/* Estilos das páginas de autenticação (login) */

.auth-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: hidden;
}

.auth-orb-1 {
  width: 420px;
  height: 420px;
  background: var(--violet-600);
  opacity: 0.3;
  top: -140px;
  left: -120px;
}

.auth-orb-2 {
  width: 320px;
  height: 320px;
  background: #c026d3;
  opacity: 0.2;
  bottom: -120px;
  right: -100px;
  animation-delay: -5s;
}

.auth-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7);
}

.auth-logo {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  margin-bottom: 1.75rem;
}

.auth-logo span {
  color: var(--violet-400);
}

.auth-card h1 {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
  text-align: center;
}

.auth-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}

.form-field {
  margin-bottom: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-field input {
  padding: 0.75rem 0.9rem;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--duration-fast) var(--ease-out-expo),
    box-shadow var(--duration-fast) var(--ease-out-expo);
}

.form-field input:focus {
  outline: none;
  border-color: var(--violet-400);
  box-shadow: 0 0 0 3px var(--violet-glow);
}

.form-error {
  color: #f87171;
  font-size: 0.85rem;
  margin-bottom: 0.9rem;
}

.auth-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.auth-switch {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.auth-switch a {
  color: var(--violet-300);
  text-decoration: none;
  font-weight: 600;
}

.auth-switch a:hover {
  text-decoration: underline;
}
