:root {
  --brand-green: #0A5028;
  --brand-green-dark: #083f20;
  --brand-green-soft: #e6f0ea;
  --brand-green-border: #bfd3c6;

  --cream: #f7f3e8;
  --white: #ffffff;
  --text: #17211d;
  --muted: #66726b;
  --border: #d8ded9;

  --success: #137333;
  --error: #b42318;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #f7f3e8 0%, #eaf3ee 100%);
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 62px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  color: var(--brand-green);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

.nav-links a.active {
  border-bottom: 2px solid var(--brand-green);
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.login-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 32px;
  align-items: stretch;
}

.info-panel {
  background: var(--brand-green);
  color: var(--white);
  border-radius: 32px;
  padding: 48px;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 24px 60px rgba(10, 80, 40, 0.22);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 24px;
}

.info-panel h1 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.98;
}

.info-panel p {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.6;
}

.info-list {
  display: grid;
  gap: 14px;
  margin-top: 40px;
}

.info-list div {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.info-list strong {
  color: #d7f0df;
}

.info-list span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.login-card {
  background: var(--white);
  border: 1px solid var(--brand-green-border);
  border-radius: 32px;
  padding: 42px;
  box-shadow: 0 20px 52px rgba(10, 80, 40, 0.1);
  align-self: center;
}

.login-card h2 {
  margin: 0 0 8px;
  color: var(--brand-green);
  font-size: 34px;
}

.intro {
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 28px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

label {
  font-size: 13px;
  font-weight: 800;
  color: var(--brand-green);
}

input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
}

input:focus {
  border-color: var(--brand-green);
  box-shadow: 0 0 0 4px rgba(10, 80, 40, 0.12);
}

button {
  width: 100%;
  margin-top: 8px;
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  color: var(--white);
  background: var(--brand-green);
  font-weight: 900;
  cursor: pointer;
}

button:hover {
  background: var(--brand-green-dark);
}

.secondary-action {
  margin: 24px 0 0;
  color: var(--muted);
  text-align: center;
}

.secondary-action a {
  color: var(--brand-green);
  font-weight: 800;
}

.result {
  margin-top: 24px;
  padding: 16px;
  background: #101714;
  color: #eaf0ec;
  border-radius: 16px;
  white-space: pre-wrap;
  overflow-x: auto;
  font-size: 13px;
}

.hidden {
  display: none;
}

.verification-card {
  max-width: 560px;
  margin: 80px auto;
}

.primary-link {
  display: block;
  border-radius: 999px;
  padding: 15px 22px;
  color: var(--white);
  background: var(--brand-green);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.primary-link:hover {
  background: var(--brand-green-dark);
}

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

  .info-panel {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .login-card,
  .info-panel {
    padding: 28px;
    border-radius: 24px;
  }

  .brand-logo {
    height: 48px;
  }
}
