:root {
  --navy: #071b2c;
  --ink: #173041;
  --muted: #70808a;
  --line: #d9e3df;
  --paper: #f4f6f2;
  --teal: #0d9c80;
  --lime: #c8ee63;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font:
    14px/1.5 "Segoe UI",
    Arial,
    sans-serif;
}
.login-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(340px, 42%) 1fr;
}
.welcome-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(32px, 6vw, 80px);
  background: linear-gradient(145deg, #071b2c 3%, #0a3040 65%, #0f4b54);
  color: #eff5f0;
  overflow: hidden;
}
.welcome-panel:after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border: 1px solid #c8ee6340;
  border-radius: 50%;
  right: -280px;
  bottom: -270px;
  box-shadow:
    0 0 0 65px #c8ee630b,
    0 0 0 130px #c8ee6308;
}
.brand {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.brand-logo {
  display: block;
  width: 132px;
  height: 132px;
  object-fit: contain;
  border-radius: 9px;
}
.welcome-copy {
  max-width: 430px;
  margin: auto 0;
  position: relative;
  z-index: 1;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  margin: 0 8px 3px 0;
  background: currentColor;
}
.welcome-copy h1 {
  max-width: 410px;
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(38px, 5vw, 65px);
  line-height: 1.02;
  letter-spacing: -0.065em;
  font-weight: 600;
}
.welcome-copy > p:last-child {
  max-width: 390px;
  margin: 22px 0 0;
  color: #bdd0cf;
  font-size: 15px;
}
.assurances {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  color: #c8d8d7;
  font-size: 12px;
  position: relative;
  z-index: 1;
}
.assurances span {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 50%;
  background: #c8ee63;
  color: #173a40;
  font-size: 11px;
  font-weight: 800;
}
.legal-note {
  position: relative;
  z-index: 1;
  margin: 38px 0 0;
  color: #8fa7ab;
  font-size: 10px;
}
.legal-note a {
  color: #c8ee63;
  text-decoration: none;
}
.sign-in-panel {
  display: grid;
  place-items: center;
  padding: 32px;
  background: #fcfdfb;
}
.sign-in-card {
  width: min(100%, 430px);
}
.back-link {
  display: inline-block;
  margin-bottom: 42px;
  color: #4a7270;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}
.dark {
  color: #6f8e8d;
}
.sign-in-card h2 {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 32px;
  letter-spacing: -0.045em;
}
.intro {
  margin: 7px 0 29px;
  color: var(--muted);
  font-size: 13px;
}
.sign-in-card form {
  display: grid;
  gap: 8px;
}
.sign-in-card label {
  font-size: 11px;
  font-weight: 700;
}
.sign-in-card label a {
  float: right;
  color: #0b806c;
  text-decoration: none;
  font-weight: 700;
}
.sign-in-card input[type="email"],
.sign-in-card input[type="password"] {
  width: 100%;
  height: 45px;
  padding: 0 13px;
  border: 1px solid #cddbd7;
  border-radius: 7px;
  outline: 0;
  color: var(--ink);
  background: #fff;
  font: 13px inherit;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.sign-in-card input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px #0d9c8020;
}
.password-wrap {
  position: relative;
}
.password-wrap input {
  padding-right: 60px !important;
}
.password-toggle {
  position: absolute;
  right: 8px;
  top: 9px;
  border: 0;
  background: transparent;
  color: #257c70;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}
.remember {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 3px 0 10px;
  font-weight: 400 !important;
  color: #617681;
  font-size: 11px !important;
}
.remember input {
  accent-color: var(--teal);
}
.submit-button,
.sso-button {
  height: 45px;
  border-radius: 7px;
  font: 700 12px inherit;
  cursor: pointer;
}
.submit-button {
  border: 0;
  background: var(--navy);
  color: #fff;
}
.submit-button span {
  padding-left: 9px;
  color: var(--lime);
  font-size: 16px;
}
.form-message {
  min-height: 18px;
  margin: 0;
  color: #a24e41;
  font-size: 11px;
}
.form-message.success {
  color: #087c66;
}
.divider {
  position: relative;
  margin: 16px 0;
  text-align: center;
  color: #91a09f;
  font-size: 10px;
}
.divider:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px solid var(--line);
}
.divider span {
  position: relative;
  padding: 0 9px;
  background: #fcfdfb;
}
.sso-button {
  width: 100%;
  border: 1px solid #cbd9d5;
  background: #fff;
  color: #284653;
}
.support {
  margin: 23px 0 0;
  color: #74858b;
  font-size: 11px;
  text-align: center;
}
.support a {
  color: #0b806c;
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 760px) {
  .login-layout {
    grid-template-columns: 1fr;
  }
  .welcome-panel {
    min-height: 310px;
    padding: 30px;
  }
  .welcome-copy {
    margin: 55px 0 0;
  }
  .welcome-copy h1 {
    font-size: 39px;
  }
  .assurances,
  .legal-note {
    display: none;
  }
  .sign-in-panel {
    padding: 42px 25px;
  }
}
@media (max-width: 420px) {
  .welcome-panel {
    min-height: 275px;
  }
  .welcome-copy {
    margin-top: 40px;
  }
  .welcome-copy > p:last-child {
    font-size: 12px;
  }
  .sign-in-card h2 {
    font-size: 29px;
  }
}
