:root{
  --blue:#2f61ff;
  --blue2:#2857f0;
  --text:#101828;
  --muted:#667085;
  --border:#e4e7ec;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:#fff;  /* no black background */
}

/* Full screen container */
.auth-shell{
  min-height:100vh;
  display:flex;
  padding:0;        /* no padding */
}

/* Make it full screen, no shadow, no rounded corners */
.auth-card{
  width:100%;
  min-height:100vh;
  background:#fff;
  display:flex;
  border-radius:0;     /* remove rounding */
  box-shadow:none;     /* remove shadow */
  overflow:hidden;
}

/* LEFT */
.auth-left{
  flex:1;
  background:var(--blue);
  color:#fff;
  padding:64px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.brand-logo{
  width:170px;
  height:auto;
  display:block;
}

.hero{ margin-top:54px; }
.hero-line1,
.hero-line2{
  font-size:48px;
  line-height:1.1;
  font-weight:700;
}

.illustration{
  width:100%;
  max-width:560px;
  height:auto;
  display:block;
}

/* RIGHT */
.auth-right{
  flex:1;
  background:#fff;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding:72px;
}

.auth-form-wrap{
  width:100%;
  max-width:520px;
}

.auth-title{
  margin:0 0 34px;
  text-align:center;
  font-size:28px;
  font-weight:700;
  color:var(--text);
}

.field{ margin-bottom:22px; }
.field-label{
  display:block;
  margin-bottom:10px;
  font-size:14px;
  font-weight:600;
  color:var(--muted);
}

.field-input{
  width:100%;
  height:56px;
  border-radius:14px;
  border:1px solid var(--border);
  padding:0 16px;
  font-size:15px;
  color:var(--text);
  outline:none;
  transition: box-shadow .2s ease, border-color .2s ease;
}

.field-input:focus{
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(47,97,255,.14);
}

.field-password{ position:relative; }
.field-password .field-input{ padding-right:52px; }

.toggle-password{
  position:absolute;
  right:14px;
  top:44px;
  width:40px;
  height:40px;
  border:0;
  background:transparent;
  display:grid;
  place-items:center;
  cursor:pointer;
  color:#98a2b3;
}

.auth-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin:10px 0 28px;
  gap:12px;
}

.remember{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:14px;
  margin:0;
  cursor:pointer;
}
.remember input{
  width:18px;
  height:18px;
  accent-color: var(--blue);
}

.link{
  color:var(--muted);
  font-size:14px;
  text-decoration:none;
}
.link:hover{
  text-decoration:underline;
  color:var(--blue);
}

.btn-auth{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  width:220px;
  height:54px;
  margin:0 auto;
  border:0;
  border-radius:999px;
  background:var(--blue);
  color:#fff;
  font-weight:700;
  font-size:15px;
  cursor:pointer;
  box-shadow: 0 14px 30px rgba(47,97,255,.28);
}
.btn-auth:hover{ background:var(--blue2); }

.auth-foot{
  text-align:center;
  margin-top:22px;
}
.auth-foot .link{
  color:var(--blue);
  font-weight:600;
}

.auth-copyright{
  margin-top:34px;
  text-align:center;
  font-size:12px;
  color:#98a2b3;
}

/* Responsive */
@media (max-width: 1024px){
  .auth-card{ flex-direction:column; }
  .auth-left{ padding:44px 28px 28px; }
  .auth-right{ padding:40px 22px 40px; }
  .hero-line1,.hero-line2{ font-size:36px; }
}

@media (max-width: 480px){
  .btn-auth{ width:100%; }
  .auth-meta{ flex-direction:column; align-items:flex-start; }
}
