/* Account auth — login, register, forgot password (dark them2) */
.auth-page {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 1.5rem 1rem 3rem;
  min-height: 50vh;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  padding: 2rem 2rem 2.25rem;
  border-radius: 24px;
  background: var(--glass-bg, rgba(255, 255, 255, 0.03));
  border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--glass-shadow, 0 4px 24px rgba(0, 0, 0, 0.35));
  color: var(--text-light, #e2e8f0);
}

.auth-card-wide {
  max-width: 520px;
}

.auth-card-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 1rem;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 229, 255, 0.25);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.15);
}

.auth-card-title {
  text-align: center;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white, #ffffff);
  margin: 0 0 0.5rem;
}

.auth-card-hint {
  text-align: center;
  color: var(--text-muted, #94a3b8);
  font-size: 0.9rem;
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.auth-remember {
  text-align: center;
  margin: 0.75rem 0 0.25rem;
  color: var(--text-light, #e2e8f0);
  font-size: 0.9rem;
}

.auth-remember label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.auth-resend {
  color: var(--cyan, #00E5FF) !important;
  font-weight: 600 !important;
  margin-top: 0.25rem !important;
  text-decoration: none !important;
  height: auto !important;
  background: transparent !important;
  border: none !important;
}

.auth-card hr,
.auth-divider {
  border: none;
  height: 1px;
  margin: 1.25rem 0;
  background: linear-gradient(90deg, transparent, var(--glass-border, rgba(255,255,255,0.12)), transparent);
}

.auth-card .form-control,
.auth-card input[type="email"],
.auth-card input[type="password"],
.auth-card input[type="text"] {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.08)) !important;
  color: var(--white, #ffffff) !important;
  border-radius: 12px !important;
  height: 46px;
  font-size: 1rem;
  box-shadow: none !important;
  margin-bottom: 0.65rem;
}

.auth-card .form-control::placeholder {
  color: var(--text-muted, #94a3b8) !important;
  opacity: 1;
}

.auth-card .form-control:focus {
  border-color: var(--cyan, #00E5FF) !important;
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.15) !important;
  outline: none;
}

.auth-card label {
  color: var(--text-light, #e2e8f0);
  font-weight: 500;
}

.auth-card .text-danger,
.auth-card .field-validation-error,
.auth-card .Error {
  color: #f87171 !important;
  font-size: 0.9rem;
  margin-top: 0.35rem;
  display: block;
}

.auth-card .validation-summary-errors,
.auth-card .validation-summary-errors ul {
  color: #f87171;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.auth-card .alert {
  border-radius: 12px;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.auth-card .alert-danger {
  background: rgba(239, 68, 68, 0.1) !important;
  border-color: rgba(239, 68, 68, 0.3) !important;
  color: #fca5a5 !important;
}

.auth-card .alert-success {
  background: rgba(34, 197, 94, 0.12) !important;
  border-color: rgba(34, 197, 94, 0.3) !important;
  color: #86efac !important;
}

.auth-card .alert a {
  color: var(--cyan, #00E5FF);
  font-weight: 600;
}

.auth-card .btn-signin,
.auth-card .btn-primary[type="submit"] {
  background: linear-gradient(135deg, var(--cyan, #00E5FF), var(--blue, #3B82F6)) !important;
  border: none !important;
  color: var(--bg-deep, #050816) !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  height: 48px !important;
  border-radius: 100px !important;
  margin-top: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.auth-card .btn-signin:hover,
.auth-card .btn-primary[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.35);
}

.auth-card-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.auth-card-links a {
  color: var(--cyan, #00E5FF);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.auth-card-links a:hover {
  color: var(--purple, #8B5CF6);
  text-decoration: underline;
}

.auth-card img[src*="captcha"],
.auth-card img[src*="Captcha"] {
  border-radius: 10px;
  margin: 0.5rem auto;
  display: block;
}

.auth-card input[name*="Captcha"],
.auth-card input[id*="Captcha"] {
  margin-top: 0.75rem;
  text-align: center;
}

.auth-status-page {
  max-width: 640px;
  margin: 2rem auto 3rem;
  padding: 0 1rem;
}

.auth-status-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 24px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
}

.auth-status-card h3,
.auth-status-card h4 {
  color: var(--white, #ffffff);
  font-weight: 800;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.auth-status-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-light, #e2e8f0);
}

.auth-status-card a {
  color: var(--cyan, #00E5FF);
  font-weight: 700;
}

.auth-status-card a:hover {
  color: var(--purple, #8B5CF6);
}

.auth-status-card p {
  color: var(--text-light, #e2e8f0);
  margin: 0.5rem 0;
}

.genetics-body .card.card-container {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

.genetics-body .auth-card .custome {
  direction: ltr;
}
