.auth-page {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.auth-card__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--leaf);
  letter-spacing: -0.02em;
}
.auth-card__logo span { color: var(--coral); }

.auth-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin: 0;
}

.auth-card__sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: -0.5rem 0 0;
}

.auth-error {
  background: rgba(244, 93, 72, 0.1);
  border: 1px solid rgba(244, 93, 72, 0.3);
  color: var(--coral);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.auth-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.auth-input {
  width: 100%;
  padding: 0.65rem 0.9rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.auth-input:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(7, 128, 128, 0.1);
}

.auth-forgot {
  font-size: 0.78rem;
  color: var(--leaf);
  text-decoration: none;
  font-weight: 500;
  margin-top: 0.15rem;
  align-self: flex-end;
}
.auth-forgot:hover { text-decoration: underline; }

.auth-submit {
  margin-top: 0.25rem;
  padding: 0.75rem 1.5rem;
  background: var(--leaf);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.auth-submit:hover { background: var(--leaf-dark, #056060); }
.auth-submit:active { transform: scale(0.98); }

.auth-switch {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.auth-switch a {
  color: var(--leaf);
  text-decoration: none;
  font-weight: 600;
}
.auth-switch a:hover { text-decoration: underline; }

.auth-trust {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}

.auth-submit--ghost {
  background: transparent;
  color: var(--leaf);
  border: 1.5px solid var(--leaf);
  width: 100%;
}
.auth-submit--ghost:hover { background: var(--leaf-light); }

.auth-resend-btn {
  background: none;
  border: none;
  color: var(--leaf);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

/* ── Verificar email page ── */
.verify-icon {
  font-size: 2.8rem;
  text-align: center;
  color: var(--leaf);
}
.verify-icon--warn  { color: #d97706; }
.verify-icon--error { color: var(--coral); }

.verify-dev-block {
  background: var(--leaf-light);
  border: 1px dashed var(--leaf-mid);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
}
.verify-dev-block__label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--leaf);
  margin: 0 0 0.4rem;
}
.verify-dev-block__link {
  font-size: 0.75rem;
  color: var(--leaf-deep);
  word-break: break-all;
  text-decoration: none;
  font-family: var(--font-mono);
}
.verify-dev-block__link:hover { text-decoration: underline; }
