/** Login form styles — shell: auth_surface.css (cargado aparte en login.php). */

:where(:root) {
  --nft-s06-a26370197212: rgb(210 140 86 / 12%);
  --nft-s06-47df1679eb5b: rgb(93 165 138 / 14%);
  --nft-s06-8e86f7c73aa8: rgb(212 111 77 / 14%);
  --nft-s06-453f1d5523d6: rgb(16 36 63 / 5%);
  --nft-s06-0da2a9e92773: #b53030;
}

.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1rem 0 1.35rem;
}

.auth-center-link {
  justify-content: center;
}

.remember-me-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
}

.remember-me-label,
.forgot-password-link {
  color: var(--text-muted);
  font-size: var(--font-size-sm);
  font-weight: 600;
}

.forgot-password-link:hover {
  color: var(--text-strong);
}

.login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  padding: 0.95rem 1.1rem;
  border: none;
  border-radius: 16px;
  background: var(--gradient-primary);
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
  cursor: pointer;
  transition: var(--transition-base);
}

.login-button:hover {
  transform: translateY(-1px);
  color: var(--contrast-paper);
}

.login-button[disabled] {
  opacity: var(--opacity-disabled);
  cursor: not-allowed;
  transform: none;
}

.auth-button-link {
  text-decoration: none;
}

.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
  color: var(--text-subtle);
  font-size: 0.8rem;
}

.security-icon {
  width: 16px;
  height: 16px;
  color: var(--color-secondary);
}

.session-expired-notice,
.auth-message,
.auth-contact-card {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid var(--color-border-strong);
}

.session-expired-notice {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  background: var(--nft-s06-a26370197212);
}

.auth-message-success {
  background: var(--nft-s06-47df1679eb5b);
}

.auth-message-error {
  background: var(--nft-s06-8e86f7c73aa8);
}

.auth-contact-card {
  background: var(--nft-s06-453f1d5523d6);
}

.auth-contact-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
}

.auth-contact-card p {
  margin: 0.45rem 0;
  color: var(--text-muted);
}

.auth-danger-title {
  color: var(--nft-s06-0da2a9e92773);
  -webkit-text-fill-color: initial;
  background: none;
}

@media (prefers-reduced-motion: reduce) {
  .login-button,
.forgot-password-link,
.auth-highlight {
    transition: none;
  }

  .login-button:hover {
    transform: none;
  }
}

[data-theme="contrast"] .login-button {
  background: var(--contrast-ink);
  box-shadow: none;
}
