#togglePassword {
  position: absolute;
  top: 0.1rem;
  left: 0.3rem;
  height: 0.1rem !important;
}
.bg-primary-color {
  background-color: var(--primary-color) !important;
}
.background-section {
  background-image: url("/images/bg-section.png");
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 61.875rem;
  background-size: cover;
}

.border-secondary {
  border: 0.02rem solid rgba(138, 138, 138, 0.993) !important;
  border-radius: 0.3rem;
}

.form-check-input:checked {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  background-image: url("/images/correct.svg");
  background-size: 70%;
}
.form-check-input:focus {
  border: none !important;
}

.form-check-input {
  width: 1.125rem !important;
  height: 1.125rem !important;
  cursor: pointer;
  font-size: 14px !important;
}

.line-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.line-container::before,
.line-container::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: rgba(52, 52, 52, 0.3);
}

.dropdown-toggle::after {
  display: none !important;
}

#selected-flag {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  padding: 0.3rem;
}

.phone-button {
  border: 0.063rem solid rgba(52, 52, 52, 0.2);
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  height: 2.5rem;
}

.phone-field {
  border-top-left-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  font-size: 1.2rem !important;
  height: 2.5rem;
}

.dropdown-menu {
  height: 10rem;
  overflow-y: auto;
  overflow-x: hidden;
}

#selected-code {
  font-size: 1.2rem;
}

.input-group .toggle-password {
  position: absolute !important;
  left: 0%;
  top: 50%;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  transform: translateY(-50%);
}
.form-container {
  text-align: start;
}

.start-side {
  width: 60%;
  margin: 0 auto;
  text-align: center;
}

.left-side {
  width: 40%;
}
.fc-bg {
  color: #1877f2;
}

.google-icon {
  height: 2rem;
  width: 2rem;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .start-side {
    width: 55%;
  }

  .left-side {
    width: 45%;
  }
}

@media (max-width: 992px) {
  .start-side {
    width: 100%;
    padding: 0 2rem;
  }

  .left-side {
    display: none;
  }

  .input-group .toggle-password {
    left: 5%;
  }
}

@media (max-width: 768px) {
  .form-container .d-flex {
    flex-direction: column;
  }

  .form-container .d-flex .w-50 {
    width: 100% !important;
  }

  .d-flex.justify-content-center.gap-3.my-3 {
    flex-direction: column;
  }

  .d-flex.justify-content-center.gap-3.my-3 button {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .start-side {
    width: 100%;
    padding: 0 1rem;
    margin: 0;
  }

  h1 {
    font-size: 1.5rem;
  }

  .form-container {
    width: 100% !important;
  }

  .d-flex.mb-3.pt-4 {
    flex-wrap: wrap;
  }
}

/* Fix for international telephone input on mobile */
@media (max-width: 576px) {
  .iti {
    width: 100%;
  }

  .iti input {
    width: 100%;
  }
}
