@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

*,
*::before,
*::after{
  box-sizing:border-box;
}

body.auth-modern{
  margin:0;
  font-family:'Plus Jakarta Sans',sans-serif;
  background:
    radial-gradient(circle at 0% 0%, #bfdbfe 0, transparent 45%),
    radial-gradient(circle at 100% 100%, #a7f3d0 0, transparent 40%),
    #f1f5f9;
  min-height:100vh;
}

.auth-shell{
  min-height:100vh;
  display:grid;
  grid-template-columns:1.05fr 1fr;
}

.auth-brand{
  padding:44px;
  color:#0f172a;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.auth-brand h1{
  font-size:42px;
  line-height:1.1;
  margin:0 0 12px;
  font-weight:800;
}

.auth-brand p{
  color:#334155;
  font-size:16px;
  max-width:520px;
}

.auth-badge{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#0f766e;
  color:#fff;
  font-weight:700;
  width:max-content;
  margin-bottom:18px;
}

.auth-panel{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px;
}

.auth-card{
  width:100%;
  max-width:460px;
  border:1px solid #dbe7f3;
  border-radius:18px;
  background:#fff;
  box-shadow:0 20px 55px rgba(15,23,42,.16);
  padding:24px;
}

.auth-title{
  margin:0 0 16px;
  font-size:24px;
  font-weight:800;
  color:#0f172a;
}

.auth-label{
  font-weight:700;
  margin-bottom:6px;
  color:#334155;
}

.auth-input{
  width:100%;
  border:1px solid #cbd5e1;
  border-radius:11px;
  height:45px;
  padding:0 12px;
  margin-bottom:12px;
}

.auth-input:focus{
  border-color:#22d3ee;
  box-shadow:0 0 0 3px rgba(34,211,238,.18);
  outline:none;
}

.auth-btn{
  width:100%;
  border:0;
  border-radius:11px;
  height:45px;
  color:#fff;
  font-weight:800;
  background:linear-gradient(135deg,#0f766e,#0891b2);
  cursor:pointer;
}

.auth-consent{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:4px 0 14px;
  font-size:13px;
  color:#334155;
  line-height:1.45;
}

.auth-consent input[type="checkbox"]{
  margin-top:2px;
  width:16px;
  height:16px;
  accent-color:#0f766e;
  flex:0 0 auto;
}

.auth-consent a{
  color:#0f4c81;
  font-weight:700;
  text-decoration:none;
}

.auth-consent a:hover{
  text-decoration:underline;
}

.auth-links{
  margin-top:14px;
  display:flex;
  justify-content:space-between;
  gap:10px;
}

.auth-links a{
  font-size:13px;
  color:#0f4c81;
  font-weight:700;
  text-decoration:none;
}

.auth-links a:hover{
  text-decoration:underline;
}

@media (max-width:980px){
  .auth-shell{grid-template-columns:1fr}
  .auth-brand{display:none}
  .auth-panel{padding:16px}
}

@media (max-width:767.98px){
  .auth-panel{
    padding:14px;
  }
  .auth-card{
    padding:16px;
    border-radius:14px;
  }
  .auth-input,
  .auth-btn{
    width:100%;
    max-width:100%;
  }
}
