.auth-card {
  max-width: 500px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.auth-title {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.auth-title--large {
  font-size: 2em;
}

.auth-subtitle {
  color: var(--text-secondary);
}

.auth-google-link {
  text-decoration: none;
}

.auth-google-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #333;
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 25px;
}

.auth-google-button:hover {
  background: #f8f9fa;
  border-color: #ccc;
}

.auth-google-icon {
  width: 20px;
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #888;
  margin-bottom: 25px;
}

.auth-divider-line {
  flex: 1;
  border-bottom: 1px solid #eee;
}

.auth-divider-text {
  padding: 0 10px;
  font-size: 0.9em;
}

.auth-form {
  gap: 20px;
}

.auth-form--tight {
  gap: 15px;
}

.auth-label {
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
}

.auth-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.auth-actions {
  margin-top: 10px;
}

.auth-actions--spaced {
  margin-top: 15px;
}

.auth-submit {
  width: 100%;
  padding: 12px;
  font-size: 1.1em;
  border-radius: 8px;
}

.auth-footer {
  text-align: center;
  margin-top: 20px;
}

/* Consent Section */
.consent-section {
  background: var(--bg-secondary, #f8f9fa);
  border-radius: 8px;
  padding: 16px;
  margin-top: 10px;
}

.consent-title {
  font-weight: 600;
  font-size: 0.95em;
  color: var(--text-primary, #333);
  margin-bottom: 12px;
}

.consent-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.consent-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary-color, #4f46e5);
  cursor: pointer;
  flex-shrink: 0;
}

.consent-item label {
  font-size: 0.9em;
  color: var(--text-secondary, #555);
  line-height: 1.4;
  cursor: pointer;
}

.consent-item label a {
  color: var(--primary-color, #4f46e5);
  text-decoration: underline;
}

.consent-item label a:hover {
  color: var(--primary-hover, #4338ca);
}

.consent-footnote {
  font-size: 0.8em;
  color: var(--text-light, #888);
  margin-top: 8px;
  margin-bottom: 0;
}
