.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--bg);
}

.auth-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-elevated);
  padding: 48px 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.auth-title {
  font-family: var(--font-sans);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--text);
  text-align: center;
}

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

.auth-buttons {
  margin-bottom: 24px;
}

.google-btn {
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 4px;
  /* Slight round */
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  font-family: var(--font-sans);
}

.google-btn:hover {
  background: var(--accent-muted);
  border-color: var(--border);
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin-bottom: 24px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
}

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

.auth-divider span {
  padding: 0 10px;
}

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

.auth-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.auth-form input {
  width: 100%;
  padding: 12px 16px;
  /* Larger padding */
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-elevated);
  transition: border-color 0.2s;
  color: var(--text);
}

.auth-form input::placeholder {
  color: var(--text-muted);
}

.auth-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-muted);
}

.auth-form .btn-primary {
  width: 100%;
  padding: 12px;
  font-family: var(--font-sans);
  /* Ensure font matches */
  font-size: 1rem;
  font-weight: 600;
  margin-top: 8px;
  background-color: #1B50F5 !important;
  /* Force exact blue */
  color: #ffffff !important;
  /* Force white text */
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.auth-form .btn-primary:hover {
  background-color: #0A38D4 !important;
  /* Darker blue on hover */
}

.auth-switch {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.auth-switch a {
  color: #1B50F5;
  /* Force exact blue to match button */
  font-weight: 600;
  text-decoration: none;
}

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