/* [project]/src/styles/auth.scss.css [app-client] (css) */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-page {
  background: linear-gradient(135deg, #e0ccff 0%, #c5a1fb 100%);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  display: flex;
}

.auth-container {
  width: 100%;
  max-width: 480px;
}

.auth-box {
  background: #fff;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 8px 32px #0000001a;
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-logo {
  justify-content: center;
  margin-bottom: 1.5rem;
  display: flex;
}

.auth-logo svg, .auth-logo img {
  width: 48px;
  height: 48px;
}

.auth-title {
  color: #1a1a32;
  margin-bottom: .5rem;
  font-size: 1.75rem;
  font-weight: 700;
}

.auth-subtitle {
  color: #4b5563;
  margin: 0;
  font-size: .95rem;
}

.auth-form {
  flex-direction: column;
  gap: 1.25rem;
  display: flex;
}

.auth-form .error-message {
  border-radius: var(--radius-md);
  padding: var(--spacing-xs) var(--spacing-sm);
  background: var(--color-error-light);
  color: var(--color-error-dark);
  font-size: 14px;
}

.form-group {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.form-label {
  color: #1a1a32;
  font-size: .9rem;
  font-weight: 600;
}

.form-input, .form-select {
  border: 1px solid #c5a1fb;
  border-radius: 16px;
  padding: .875rem 1rem;
  font-size: .95rem;
  transition: all .2s;
}

.form-input:focus, .form-select:focus {
  border-color: #bbf843;
  outline: none;
  box-shadow: 0 0 0 3px #bbf8431a;
}

.form-input::-moz-placeholder {
  color: #9ca3af;
}

.form-select::-moz-placeholder {
  color: #9ca3af;
}

.form-input::placeholder, .form-select::placeholder {
  color: #9ca3af;
}

.form-select {
  cursor: pointer;
  background-color: #fff;
}

.form-footer {
  justify-content: flex-end;
  margin-top: -.5rem;
  display: flex;
}

.forgot-link {
  color: #7c3aed;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
}

.forgot-link:hover {
  text-decoration: underline;
}

.btn-submit {
  color: #1a1a32;
  cursor: pointer;
  background: #bbf843;
  border: none;
  border-radius: 16px;
  margin-top: .5rem;
  padding: .75rem 1.5rem;
  font-size: .95rem;
  font-weight: 600;
  transition: all .2s;
}

.btn-submit:hover {
  background: #9dd927;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px #bbf8434d;
}

.btn-submit:active {
  transform: translateY(0);
}

.auth-divider {
  text-align: center;
  align-items: center;
  margin: 1.5rem 0;
  display: flex;
}

.auth-divider:before, .auth-divider:after {
  content: "";
  border-bottom: 1px solid #e5e7eb;
  flex: 1;
}

.auth-divider span {
  color: #9ca3af;
  padding: 0 1rem;
  font-size: .875rem;
}

.auth-footer {
  text-align: center;
}

.auth-footer__text {
  color: #4b5563;
  margin: 0;
  font-size: .9rem;
}

.auth-footer__link {
  color: #7c3aed;
  font-weight: 600;
  text-decoration: none;
}

.auth-footer__link:hover {
  text-decoration: underline;
}

.form-note {
  color: #4b5563;
  background: #f9fafb;
  border-radius: 8px;
  align-items: flex-start;
  gap: .5rem;
  margin-top: 1rem;
  padding: 1rem;
  font-size: .875rem;
  display: flex;
}

.form-note svg {
  color: #7c3aed;
  flex-shrink: 0;
  margin-top: .125rem;
}

@media (max-width: 640px) {
  .auth-page {
    padding: 1rem;
  }

  .auth-box {
    padding: 2rem;
  }

  .auth-title {
    font-size: 1.5rem;
  }
}

/*# sourceMappingURL=src_styles_auth_scss_a1e1d929.css.map*/