.login-page{
  min-height:100vh;
  background:#fff;
}
.auth-split{
  min-height:100vh;
  display:grid;
  grid-template-columns:40% 60%;
  background:#fff;
}
.auth-brand{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 78% 82%,rgba(47,125,70,.16),transparent 28%),
    radial-gradient(circle at 18% 10%,rgba(255,255,255,.96),transparent 34%),
    linear-gradient(145deg,#faf7f0 0%,#f6fbf5 42%,#e9f4ea 100%);
}
.auth-brand:before{
  content:"";
  position:absolute;
  left:-90px;
  bottom:-120px;
  width:330px;
  height:430px;
  border:26px solid rgba(47,125,70,.07);
  border-radius:48% 48% 0 0;
  transform:rotate(-18deg);
}
.auth-brand:after{
  content:"";
  position:absolute;
  inset:auto -80px -90px auto;
  width:360px;
  height:360px;
  background:radial-gradient(circle,rgba(47,125,70,.09),transparent 62%);
}
.auth-brand-inner{
  position:relative;
  z-index:1;
  min-height:100vh;
  padding:76px 9vw 58px 5.8vw;
  display:flex;
  flex-direction:column;
}
.auth-logo{
  width:min(330px,86%);
  height:auto;
  margin-bottom:48px;
}
.auth-brand h1{
  margin:0;
  color:var(--nktree-navy-950);
  font-size:clamp(42px,4vw,64px);
  line-height:1.03;
  font-weight:760;
}
.auth-brand h1 span{
  display:block;
  color:var(--nktree-green-700);
  font-weight:600;
}
.auth-lead{
  max-width:430px;
  margin:28px 0 0;
  padding-top:28px;
  color:#24364a;
  font-size:19px;
  line-height:1.65;
  position:relative;
}
.auth-lead:before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:58px;
  height:4px;
  border-radius:999px;
  background:var(--nktree-green-700);
}
.auth-benefits{
  display:grid;
  gap:26px;
  margin-top:auto;
  max-width:430px;
}
.auth-benefit{
  display:grid;
  grid-template-columns:48px 1fr;
  gap:16px;
  align-items:center;
}
.auth-benefit-icon{
  width:48px;
  height:48px;
  border-radius:50%;
  background:rgba(255,255,255,.62);
  box-shadow:0 8px 22px rgba(47,125,70,.08);
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.auth-benefit-icon svg{
  width:25px;
  height:25px;
  fill:none;
  stroke:var(--nktree-green-700);
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.auth-benefit strong{
  display:block;
  color:var(--nktree-navy-950);
  font-weight:700;
  margin-bottom:5px;
}
.auth-benefit p{
  margin:0;
  color:#344054;
  line-height:1.55;
}
.auth-panel{
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:72px 9vw;
  background:linear-gradient(180deg,#fff,#fbfcfd);
}
.auth-language{
  position:absolute;
  top:44px;
  right:9vw;
  color:#344054;
  font-size:14px;
}
.auth-card{
  width:min(530px,100%);
}
.auth-card h2{
  margin:0;
  text-align:center;
  font-size:clamp(30px,2.8vw,42px);
  font-weight:760;
  color:var(--nktree-navy-950);
}
.auth-card>p{
  margin:12px 0 42px;
  text-align:center;
  color:#667085;
  font-size:18px;
}
.auth-card form{
  display:grid;
  gap:22px;
}
.auth-card label{
  display:grid;
  gap:9px;
  color:var(--nktree-navy-950);
  font-weight:600;
}
.auth-card input{
  width:100%;
  min-height:58px;
  border-radius:9px;
  border:1px solid #cfd7e3;
  background:#fff;
  padding:0 18px;
  font-size:16px;
  color:var(--nktree-navy-950);
  box-shadow:0 8px 24px rgba(16,24,40,.03);
}
.auth-card input::placeholder{
  color:#98a2b3;
}
.auth-card input:focus{
  outline:3px solid rgba(47,125,70,.16);
  border-color:var(--nktree-green-700);
}
.auth-card button{
  width:100%;
  min-height:58px;
  margin-top:10px;
  border-radius:9px;
  background:var(--brand);
  font-size:17px;
  font-weight:700;
  box-shadow:0 16px 34px rgba(18,108,131,.2);
}
.auth-card button:hover{
  background:var(--nktree-navy-900);
}
.auth-card .error{
  margin:0 0 22px;
}
.auth-panel footer{
  position:absolute;
  bottom:42px;
  left:9vw;
  right:9vw;
  text-align:center;
  color:#667085;
  font-size:13px;
}
@media(max-width:980px){
  .auth-split{grid-template-columns:1fr}
  .auth-brand-inner{min-height:auto;padding:42px 28px}
  .auth-logo{width:min(260px,76%);margin-bottom:24px}
  .auth-brand h1{font-size:42px}
  .auth-benefits{margin-top:32px}
  .auth-panel{min-height:auto;padding:72px 28px 96px}
  .auth-language{top:24px;right:28px}
  .auth-panel footer{bottom:28px}
}
@media(max-width:640px){
  .auth-brand-inner{padding:32px 22px}
  .auth-benefits{gap:18px}
  .auth-benefit{grid-template-columns:48px 1fr}
  .auth-benefit-icon{width:48px;height:48px}
  .auth-panel{padding:66px 22px 90px}
  .auth-card h2{text-align:left}
  .auth-card>p{text-align:left;margin-bottom:28px}
}
