:root {
  --navy: #055489;
  --navy-dark: #033a62;
  --green: #9ccc66;
  --white: #ffffff;
  --grey-200: #e2e8f0;
  --grey-400: #94a3b8;
  --grey-600: #64748b;
  --grey-800: #1e293b;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #0a0f1a;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.auth-screen {
  display: flex;
  width: 900px;
  min-height: 500px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.auth-left {
  width: 44%;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 48px 40px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.auth-brand-name { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 900; letter-spacing: 2px; }
.auth-brand-tag { font-size: 9px; color: var(--green); text-transform: uppercase; margin-top: 3px; }

.auth-tagline h2 { font-family: 'Lora', serif; font-size: 26px; margin-bottom: 10px; }
.auth-tagline p { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.7; }

.auth-right { flex: 1; padding: 40px; display: flex; flex-direction: column; justify-content: center; }

.auth-form-title { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 800; color: var(--navy-dark); margin-bottom: 6px; }
.auth-form-sub { font-size: 12px; color: var(--grey-400); margin-bottom: 24px; }

.auth-field { margin-bottom: 14px; }
.auth-label { font-size: 10px; font-weight: 700; color: var(--grey-600); text-transform: uppercase; display: block; margin-bottom: 5px; }
.auth-input { width: 100%; height: 40px; padding: 0 12px; border: 1.5px solid var(--grey-200); border-radius: 8px; box-sizing: border-box; }

.auth-btn {
  width: 100%;
  height: 42px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  cursor: pointer;
  margin-top: 8px;
}

.auth-divider { display: flex; align-items: center; gap: 10px; margin: 16px 0; font-size: 11px; color: var(--grey-400); }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--grey-200); }

.auth-footer-links { text-align: center; font-size: 11px; color: var(--grey-400); line-height: 1.6; }
.auth-footer-links a { color: var(--navy); font-weight: 600; text-decoration: none; }
