:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #15231d;
  background: #f4f6f3;
}

* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; }
button, input { font: inherit; }

.shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
}

.brand {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 128px);
  color: #f8fbf8;
  background:
    radial-gradient(circle at 80% 15%, rgba(221, 174, 80, .28), transparent 28%),
    linear-gradient(145deg, #102b21 0%, #194534 58%, #0f3024 100%);
}

.brand::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: -180px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018);
}

.eyebrow { color: #e2b85d; font-size: .78rem; font-weight: 800; letter-spacing: .18em; }
h1 { max-width: 650px; margin: 24px 0; font-size: clamp(2.7rem, 6vw, 5.8rem); line-height: .98; letter-spacing: -.055em; font-weight: 400; }
h1 strong { color: #e9c879; font-weight: 750; }
.brand > p { max-width: 520px; margin: 0; color: #d8e2dd; font-size: 1.12rem; line-height: 1.65; }
.trust { margin-top: 52px; color: #cbd9d2; font-size: .9rem; }
.trust span { display: inline-grid; place-items: center; width: 24px; height: 24px; margin-right: 8px; border-radius: 50%; color: #163c2c; background: #e9c879; font-weight: 900; }

.card { display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 8vw, 110px); background: #fff; }
.mark { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 32px; border-radius: 17px; color: #163c2c; background: #e9c879; font-size: 1.65rem; font-weight: 900; box-shadow: 0 12px 35px rgba(31, 66, 51, .14); }
h2 { margin: 0; color: #183528; font-size: 2.2rem; letter-spacing: -.035em; }
.subtitle { margin: 8px 0 32px; color: #718078; }
form { max-width: 460px; }
label { display: block; margin: 19px 0 8px; color: #344a40; font-size: .83rem; font-weight: 750; }
input { width: 100%; height: 52px; padding: 0 15px; border: 1px solid #dbe2dd; border-radius: 12px; outline: none; color: #162820; background: #fbfcfb; transition: border-color .2s, box-shadow .2s; }
input:focus { border-color: #2f6b50; box-shadow: 0 0 0 4px rgba(47, 107, 80, .1); }
.password-field { position: relative; }
.password-field input { padding-right: 80px; }
.password-field button { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); border: 0; color: #2f6b50; background: transparent; font-size: .78rem; font-weight: 800; cursor: pointer; }
.submit { display: flex; align-items: center; justify-content: space-between; width: 100%; height: 55px; margin-top: 28px; padding: 0 21px; border: 0; border-radius: 13px; color: #fff; background: #1b4b37; font-weight: 800; cursor: pointer; transition: transform .15s, background .2s; }
.submit:hover { background: #246448; transform: translateY(-1px); }
.submit:disabled { opacity: .65; cursor: wait; transform: none; }
.submit span { font-size: 1.35rem; }
.status { min-height: 24px; margin: 16px 0 0; color: #ad3131; font-size: .88rem; line-height: 1.4; }
.status.success { color: #28734f; }

@media (max-width: 820px) {
  .shell { grid-template-columns: 1fr; }
  .brand { min-height: 42vh; padding: 44px 28px; }
  .brand h1 { margin: 18px 0; font-size: clamp(2.6rem, 12vw, 4rem); }
  .trust { margin-top: 30px; }
  .card { min-height: 58vh; padding: 46px 28px 60px; }
  form { max-width: none; }
}
