/* Auth Layout Container */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 20px;
}

/* Modern Dark Flat Auth Card */
.auth-card {
  width: 100%;
  max-width: 380px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.auth-header {
  text-align: center;
  margin-bottom: 28px;
}

.auth-logo {
  width: 44px;
  height: 44px;
  background: var(--primary-soft);
  color: var(--primary);
  border: 1px solid rgba(59, 102, 245, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 16px;
}

.auth-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 4px;
}

.auth-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Form Overrides */
.auth-form .field {
  margin-bottom: 18px;
}

.auth-btn {
  width: 100%;
  padding: 12px;
  font-size: 0.95rem;
  margin-top: 8px;
}

.auth-msg {
  margin-top: 14px;
  font-size: 0.82rem;
  text-align: center;
  min-height: 20px;
}
.auth-msg.error { color: var(--danger); }
.auth-msg.success { color: var(--success); }
