/* === Auth pages — VK Automation === */

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #f0f4ff 0%, #faf5ff 100%);
}

.auth-page {
  width: 100%;
  max-width: 420px;
  padding: 20px;
}

.auth-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.auth-logo {
  text-align: center;
  margin-bottom: 28px;
}

.auth-logo svg {
  margin: 0 auto 12px;
}

.auth-logo h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.auth-logo p {
  font-size: 13px;
  color: var(--text-muted);
}

.auth-error {
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 16px;
  display: none;
}

.auth-error.visible {
  display: block;
}

.auth-form .form-group:last-of-type {
  margin-bottom: 20px;
}

.auth-footer {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

.password-field {
  position: relative;
}
