/* === Auth Layout === */
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.auth-card {
  width: 100%;
  max-width: 400px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
}

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

.auth-logo {
  max-width: 180px;
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}

.auth-header h1 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

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

/* === Auth Form === */
.auth-form {
  margin-bottom: 16px;
}

.auth-form .form-group {
  margin-bottom: 16px;
}

.auth-form .btn-primary {
  margin-top: 8px;
}

/* === Auth Messages === */
.auth-message {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 0.9rem;
  animation: slideDown 0.3s ease;
}

.auth-error {
  background: rgba(255, 71, 87, 0.15);
  border: 1px solid var(--danger);
  color: var(--danger);
}

.auth-success {
  background: rgba(46, 213, 115, 0.15);
  border: 1px solid var(--success);
  color: var(--success);
}

.auth-info {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* === Auth Links === */
.auth-link {
  display: block;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  margin-bottom: 16px;
}

.auth-link:hover {
  color: var(--accent);
}

/* === Divider === */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* === Google Button === */
.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-family: var(--font);
}

.btn-google:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-google:active {
  transform: scale(0.97);
}

/* === Footer Link === */
.auth-footer {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 20px;
}

.auth-footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.auth-footer a:hover {
  color: var(--accent-hover);
}
