/* ===== AUTH PAGES ===== */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  padding: 20px;
  /* Left: Image Section */
  /* Right: Form Section */
  /* Password Strength */
  /* Validation Styles */
}
.auth-page__container {
  width: 100%;
  max-width: 1200px;
}
.auth-page .auth-page__form {
  overflow-y: auto;
  max-height: none;
}
.auth-page__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .auth-page__content {
    grid-template-columns: 1fr;
  }
}
.auth-page__image {
  position: relative;
  overflow: hidden;
  background: transparent;
  display: none;
}
@media (min-width: 992px) {
  .auth-page__image {
    display: block;
  }
}
.auth-page__image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 600px;
}
.auth-page__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.auth-page__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.auth-page__overlay::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(188 188 188 / 90%) 0%, rgb(0 0 0 / 90%) 100%);
  opacity: .2;
  z-index: -1;
}
.auth-page__overlay-content {
  text-align: center;
  color: #fff;
}
.auth-page__overlay-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 16px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  line-height: 1.5;
}
.auth-page__overlay-text {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.95;
}
.auth-page__form {
  padding: 60px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  max-height: 100vh;
}
@media (max-width: 991px) {
  .auth-page__form {
    padding: 40px 30px;
  }
}
@media (max-width: 768px) {
  .auth-page__form {
    padding: 30px 20px;
  }
}
.auth-page__form-wrapper {
  width: 100%;
  max-width: 450px;
}
.auth-page__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  justify-content: center;
}
@media (max-width: 768px) {
  .auth-page__logo {
    margin-bottom: 30px;
  }
}
.auth-page__logo-img {
  width: 280px;
}
.auth-page__logo-text {
  font-size: 22px;
  font-weight: 700;
  background: var(--bg-linear);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.auth-page__header {
  text-align: center;
  margin-bottom: 32px;
}
.auth-page__icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--bg-linear);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(230, 160, 4, 0.3);
}
.auth-page__icon-wrapper i {
  color: #fff;
  font-size: 36px;
}
.auth-page__title {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
}
@media (max-width: 768px) {
  .auth-page__title {
    font-size: 28px;
  }
}
.auth-page__subtitle {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}
.auth-page__form-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.auth-page__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.auth-page__label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  left: 12px;
  top: 13px;
  z-index: 2;
}
.auth-page__label>span{
  display: none;
}
.auth-page__label i {
  color: var(--color-1);
  font-size: 18px;
}
.auth-page__required {
  color: #ef4444;
  margin-left: 2px;
}
.auth-page__input {
  width: 100%;
  padding: 14px 16px 14px 35px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 15px;
  color: #111827;
  transition: all 0.3s ease;
  background: #fff;
}
.auth-page__input:focus {
  outline: none;
  border-color: var(--color-1);
  box-shadow: 0 0 0 4px rgba(230, 160, 4, 0.1);
}
.auth-page__input::placeholder {
  color: #9ca3af;
}
.auth-page__password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.auth-page__toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  transition: all 0.3s ease;
  border-radius: 6px;
}
.auth-page__toggle-password:hover {
  color: var(--color-1);
  background: rgba(230, 160, 4, 0.1);
}
.auth-page__toggle-password i {
  font-size: 20px;
}
.auth-page__hint {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(230, 160, 4, 0.1);
  border-radius: 8px;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  margin-top: 4px;
}
.auth-page__hint i {
  color: var(--color-1);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.auth-page__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: -8px 0;
}
.auth-page__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 14px;
  color: #374151;
  cursor: pointer;
  line-height: 1.5;
}
.auth-page__checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--color-1);
}
.auth-page__checkbox input[type=checkbox][name=terms] + .auth-page__error {
  order: 3;
  flex: 100%;
  width: 100%;
}
.auth-page__checkbox span {
  flex: 1;
}
.auth-page__checkbox a {
  color: var(--color-1);
  text-decoration: none;
  font-weight: 500;
}
.auth-page__checkbox a:hover {
  text-decoration: underline;
}
.auth-page__link {
  color: var(--color-1);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.auth-page__link:hover {
  color: #d97706;
  text-decoration: underline;
}
.auth-page__submit {
  width: 100%;
  padding: 14px 24px;
  background: var(--bg-linear);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(230, 160, 4, 0.3);
  margin-top: 8px;
}
.auth-page__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(230, 160, 4, 0.4);
}
.auth-page__submit:active {
  transform: translateY(0);
}
.auth-page__submit i {
  font-size: 20px;
}
.auth-page__divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 8px 0;
  color: #9ca3af;
  font-size: 14px;
}
.auth-page__divider::before, .auth-page__divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e5e7eb;
}
.auth-page__divider span {
  padding: 0 16px;
}
.auth-page__social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.auth-page__social-btn {
  width: 100%;
  padding: 12px 24px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #374151;
}
.auth-page__social-btn:hover {
  border-color: #d1d5db;
  background: #f9fafb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.auth-page__social-btn i {
  font-size: 20px;
}
.auth-page__social-btn--google:hover {
  border-color: #ea4335;
  color: #ea4335;
}
.auth-page__social-btn--facebook:hover {
  border-color: #1877f2;
  color: #1877f2;
}
.auth-page__footer {
  text-align: center;
  font-size: 14px;
  color: #6b7280;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}
.auth-page__footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-1);
  text-decoration: none;
  font-weight: 600;
  margin-left: 4px;
  transition: all 0.3s ease;
}
.auth-page__footer-link:hover {
  color: #d97706;
  text-decoration: underline;
}
.auth-page__footer-link i {
  font-size: 18px;
}
.auth-page__strength {
  padding: 16px;
  background: #f9fafb;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}
.auth-page__strength-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 10px;
}
.auth-page__strength-label i {
  color: var(--color-1);
  font-size: 18px;
}
.auth-page__strength-bar {
  width: 100%;
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}
.auth-page__strength-fill {
  height: 100%;
  width: 0%;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.auth-page__strength-fill[data-strength=weak] {
  width: 33%;
  background: #ef4444;
}
.auth-page__strength-fill[data-strength=medium] {
  width: 66%;
  background: #f59e0b;
}
.auth-page__strength-fill[data-strength=strong] {
  width: 100%;
  background: #10b981;
}
.auth-page__strength-text {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
}
.auth-page__strength-text[data-strength=weak] {
  color: #ef4444;
}
.auth-page__strength-text[data-strength=medium] {
  color: #f59e0b;
}
.auth-page__strength-text[data-strength=strong] {
  color: #10b981;
}
.auth-page__error-message {
  display: block;
  color: #ef4444;
  font-size: 13px;
  /* margin-top: 6px; */
  font-weight: 500;
  line-height: 1.4;
}
.auth-page__input--error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1) !important;
}
.auth-page__input--valid {
  border-color: #10b981 !important;
}
.auth-page__error {
   color: #ef4444;
}
.auth-page__valid {
  display: none;
}
/*# sourceMappingURL=maps/auth.css.map */
