:root {
  --navy: #1b2130;
  --navy-soft: #262d40;
  --blue: #185fa5;
  --blue-pale: #e6f1fb;
  --coral: #e8623d;
  --coral-dark: #cf4e2c;
  --cream: #faf8f4;
  --white: #ffffff;
  --border: #e4e1d9;
  --ink: #232323;
  --ink-soft: #6b6b6b;
  --ink-faint: #9b978c;
  --brand-sky: #4fb6fa;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font-family: inherit;
}

.login-header {
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 56px;
}

.login-header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.login-header-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.login-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
}

.login-header-help {
  color: rgba(255, 255, 255, 0.75);
}

.login-header-signin {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.login-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 32px;
  align-items: center;
}

@media (max-width: 900px) {
  .login-main {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }
}

.login-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 7px 15px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.login-hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.login-hero-title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.login-hero-title em {
  font-style: italic;
  color: var(--brand-sky);
}

.login-hero-copy {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 460px;
  line-height: 1.65;
}

.login-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow:
    0 1px 2px rgba(27, 33, 48, 0.06),
    0 8px 32px rgba(27, 33, 48, 0.08);
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}

.login-card h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 6px;
}

.login-card-sub {
  text-align: center;
  color: var(--ink-soft);
  font-size: 13px;
  margin-bottom: 24px;
}

.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 20px;
  border: none;
  border-radius: 10px;
  background: var(--coral);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-google:hover {
  background: var(--coral-dark);
}

.login-form {
  margin: 0;
}

.login-switch-account {
  display: block;
  text-align: center;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.login-switch-account:hover {
  color: var(--blue);
  text-decoration: underline;
}

.login-help {
  display: block;
  text-align: center;
  margin-top: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.login-sso-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 28px;
  font-size: 11.5px;
  color: var(--ink-faint);
}

.login-error {
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fdecea;
  color: #b42318;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

a.btn-google {
  text-decoration: none;
  text-align: center;
}
