body { background: var(--surface); min-height: 100vh; }

.auth-layout {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
}

.auth-brand {
  background: var(--navy);
  padding: 60px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.auth-brand .logo { font-size: 28px; margin-bottom: 32px; }
.auth-brand-tagline {
  font-size: 22px; font-family: 'Sora', sans-serif;
  color: var(--white); font-weight: 600; line-height: 1.35;
  margin-bottom: 32px;
}
.auth-brand-features { display: flex; flex-direction: column; gap: 12px; }
.auth-feature { font-size: 15px; color: rgba(255,255,255,0.75); }

.auth-card {
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 56px;
  background: var(--white);
}
.auth-header { margin-bottom: 28px; }
.auth-header h2 { font-size: 26px; color: var(--navy); margin-bottom: 6px; }
.auth-header p { font-size: 15px; color: var(--text-mid); }

.auth-error {
  background: #FEF2F2; border: 1px solid #FECACA;
  color: #DC2626; font-size: 14px;
  padding: 10px 14px; border-radius: var(--radius);
  margin-bottom: 16px;
}

.auth-form { display: flex; flex-direction: column; gap: 16px; max-width: 400px; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; font-weight: 500; color: var(--text); }
.form-group input {
  padding: 10px 14px; border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 15px; color: var(--text);
  background: var(--white); outline: none;
  transition: border-color 0.15s;
}
.form-group input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,86,219,0.1); }
.form-forgot { font-size: 13px; color: var(--blue); text-align: right; margin-top: 2px; }

.btn-auth {
  background: var(--blue); color: var(--white);
  border: none; border-radius: var(--radius);
  padding: 12px; font-size: 15px; font-weight: 500;
  margin-top: 4px; transition: background 0.15s;
}
.btn-auth:hover { background: var(--blue-dark); }

.auth-divider {
  display: flex; align-items: center; gap: 12px;
  color: var(--text-soft); font-size: 13px;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

.btn-google {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--white); padding: 10px;
  font-size: 14px; font-weight: 500; color: var(--text);
  transition: background 0.15s;
}
.btn-google:hover { background: var(--surface); }

.auth-footer { margin-top: 24px; font-size: 14px; color: var(--text-mid); }
.auth-footer a { color: var(--blue); font-weight: 500; }

@media (max-width: 768px) {
  .auth-layout { grid-template-columns: 1fr; }
  .auth-brand { display: none; }
  .auth-card { padding: 40px 24px; }
}

.btn-auth { background: var(--orange) !important; }
.btn-auth:hover { background: var(--orange-dark) !important; }
.auth-footer a { color: var(--orange) !important; }
.form-group input:focus { border-color: var(--orange) !important; box-shadow: 0 0 0 3px rgba(232,81,26,0.1) !important; }
.logo-link { text-decoration: none; display: block; margin-bottom: 32px; }
