/*============================================================================================
	Start Auth  Area
==============================================================================================*/

.auth__card {
  border-radius: 20px;
  background: var(--white-color);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.12);
  padding: 60px;
  margin: 0px 8px;
}

.auth__card-head {
  text-align: center;
  margin-bottom: 24px;
}

.auth__card-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 50.04px;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.auth__card-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-transform: capitalize;
}

.auth__card-social {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.auth__card-social a {
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 12px 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  color: var(--secondary-color);
}
.auth__card-social a:hover {
  background: var(--offwhite-color);
}

.auth__card-social a img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.auth__another-way {
  margin-top: 24px;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  position: relative;
}

.auth__another-way::before,
.auth__another-way::after {
  position: absolute;
  content: "";
  width: 35%;
  height: 1px;
  background: var(--border-color);
  top: 50%;
}
.auth__another-way::before {
  left: 0;
}
.auth__another-way::after {
  right: 0;
}

.auth__card-form .form-group {
  margin-bottom: 16px;
}
.auth__card-form .form-group label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 12px;
}

.auth__card-form .form-group input {
  width: 100%;
  border-radius: 20px;
  border: 1.5px solid var(--border-color);
  height: 58px;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--secondary-color);
}
.auth__card-form .form-group input:focus {
  border: 1.5px solid var(--primary-color);
}

.auth__card-form .form-group-input {
  position: relative;
}
.auth__card-form .toggle-password {
  position: absolute;
  right: 24px;
  top: 20px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  color: #4f536c66;
  transition: all 0.4s ease;
}
.auth__card-form .toggle-password:hover {
  color: var(--paragraph-color);
}
.auth__card-form .form-group-input input {
  padding: 18px 56px 18px 24px !important;
}

/* OTP Verification Input Boxes */
.otp-input {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.otp-input-field {
  width: 52px;
  height: 58px;
  text-align: center;
  border-radius: 12px;
  border: 1.5px solid var(--border-color);
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary-color);
  transition: border-color 0.2s ease;
}
.otp-input-field:focus {
  border-color: var(--primary-color);
}
#verification-result {
  margin-top: 12px;
  margin-bottom: 0;
}

@media only screen and (max-width: 480px) {
  .otp-input {
    gap: 8px;
  }
  .otp-input-field {
    width: 42px;
    height: 50px;
    font-size: 18px;
  }
}
/* Suppress Bootstrap's built-in invalid-field icon here — it sits at the
   same right-side spot as our custom Show/Hide toggle and overlaps it. */
.auth__card-form .form-group-input input.is-invalid {
  background-image: none !important;
}

.auth__card-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.auth__card-info .form-check {
  cursor: pointer;
  white-space: nowrap;
  margin: 0;
}
.auth__card-info .form-check label {
  color: var(--paragraph-color);
  position: relative;
  cursor: pointer;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.auth__card-info .form-check label a {
  color: var(--primary-color);
  text-decoration: none;
}
.auth__card-info .form-check input {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  margin-right: 8px;
  cursor: pointer;
  position: relative;
  top: 1px;
  border: 1px solid var(--border-color);
}
.auth__card-info .form-check input:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}
.auth__card-info .form-check .form-check-input:checked {
  background-color: var(--primary-color);
}

.auth__card-info a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
.auth__card-form-btn .theme-btn {
  width: 100%;
  margin-top: 12px;
}
.auth__card-bottom {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.auth__card-bottom a {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  color: var(--secondary-color);
  padding: 6px 16px;
  display: inline-block;
}
.auth__card-bottom a:hover {
  background: var(--offwhite-color);
}

@media only screen and (max-width: 767.99px) {
  .auth__card {
    padding: 32px;
    margin: 0;
  }

  .auth__card-title {
    font-size: 28px;
  }

  .auth__card-social {
    margin-top: 32px;
  }

  .auth__card-social a {
    margin-bottom: 12px;
  }
  .auth__card-bottom {
    display: block;
  }
  .auth__card-bottom a {
    margin-top: 8px;
  }
  .auth__card-social {
    display: block;
  }
  .auth__card-form .form-group input {
    height: 52px;
  }
  .auth__card-info {
    display: block;
  }
  .auth__card-info a {
    margin-top: 8px;
  }

  .auth__card-info .form-check label {
    font-size: 14px;
    line-height: 120%;
  }

  .auth__another-way::before,
  .auth__another-way::after {
    width: 20%;
  }
}

/*============================================================================================
	End Auth  Area
==============================================================================================*/
