/* ================= LOGIN LAYOUT ================= */

.auth-layout{
  display:flex;
  min-height:100vh;
}

/* LEFT IMAGE */

.auth-illustration{
  flex:1;
  position:relative;

  background:
  linear-gradient(
    rgba(15,23,42,0.65),
    rgba(15,23,42,0.85)
  ),
  url("/esg_login_page.png");

  background-size:cover;
  background-position:center;
}


/* TEXT ON IMAGE */

.overlay-text{
  position:absolute;
  bottom:80px;
  left:80px;
  max-width:420px;
  color:white;
}

.overlay-text h2{
  font-size:38px;
  font-weight:700;
  margin-bottom:16px;
}

.overlay-text p{
  font-size:16px;
  line-height:1.6;
  opacity:0.9;
}


/* RIGHT SIDE */

.auth-content{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f3f4f6;
  padding:40px;
}


/* LOGIN CARD */

.auth-card{
  width:100%;
  max-width:420px;

  background:white;
  padding:40px;

  border-radius:14px;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.08);
}


/* HEADER */

.auth-header h1{
  font-size:30px;
  margin-bottom:6px;
}

.auth-header .subtitle{
  color:#6b7280;
  margin-bottom:28px;
}


/* FORM */

.form-group{
  margin-bottom:18px;
}

.input-field{
  width:100%;
  padding:12px;

  border:1px solid #d1d5db;
  border-radius:8px;

  font-size:14px;
}


/* ROW */

.form-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
  font-size:14px;
}


/* BUTTON */

.primary-btn{
  background:#2563eb;
  color:white;
  border:none;

  padding:12px;
  border-radius:8px;

  cursor:pointer;
}

.primary-btn:hover{
  background:#1d4ed8;
}

.primary-btn.full{
  width:100%;
}


/* LINKS */

.link-muted{
  font-size:13px;
  color:#6b7280;
}


/* FOOTER */

.auth-footer{
  margin-top:18px;
  font-size:14px;
}


/* ================= RESPONSIVE ================= */

@media (max-width:900px){

  .auth-layout{
    flex-direction:column;
  }

  .auth-illustration{
    min-height:240px;
  }

  .overlay-text{
    left:30px;
    bottom:40px;
  }

}
