/* login.css — styles for the standalone Sign In page only */

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f0f2f5;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-shell {
  width: 100%;
  max-width: 420px;
  padding: 24px 16px;
}

.login-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
  padding: 40px 40px 32px;
  text-align: center;
}

/* Logo */
.login-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.login-logo-svg {
  width: 160px;
  height: auto;
}

.gp-green { fill: #2c7a4b; }

.login-logo-sub {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Error banner */
.login-error {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  color: #b91c1c;
  font-size: 13px;
  line-height: 1.5;
  padding: 10px 12px;
  margin-bottom: 16px;
  text-align: left;
}

.login-error svg { flex-shrink: 0; margin-top: 1px; }

/* Subtitle */
.login-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 0 0 24px;
  line-height: 1.5;
}

/* Google sign-in button */
.btn-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 11px 20px;
  background: #ffffff;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn-google:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* Footer note */
.login-footer {
  font-size: 12px;
  color: #9ca3af;
  margin: 20px 0 0;
  line-height: 1.5;
}
