:root{
  --text:#111;
  --muted:#6b7280;
  --border:#e6e6e6;
  --bg:#f5f5f5;
  --card:#ffffff;
  --black:#000000;
  --shadow:0 14px 30px rgba(0,0,0,0.08);
}

*{ box-sizing:border-box; }
body{
  margin:0;
  color:var(--text);
  background:var(--bg);
}

.auth-body{
  min-height:100vh;
  background:var(--bg);
}

.auth-shell{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px 24px;
}

.auth-grid{
  width:100%;
  max-width:1200px;
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:40px;
  align-items:center;
}

.auth-left{
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

.auth-right{
  display:flex;
  align-items:center;
  justify-content:center;
}

.auth-card{
  width:100%;
  max-width:520px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:28px;
  box-shadow:var(--shadow);
}

.logo-auth-big{
  width:560px;
  max-width:100%;
  height:auto;
  display:block;
}

.logo-home--landing{
  width:640px;
  margin-top:-20px;
}

.auth-title{
  text-align:center;
  font-size:26px;
  font-weight:700;
  margin:8px 0 14px;
}

.auth-subtitle{
  color:var(--muted);
  text-align:center;
  margin:0 0 16px;
  font-size:15px;
}

.ms-label{
  display:block;
  font-size:16px;
  margin:14px 0 6px;
  font-weight:600;
}

.ms-input,
.ms-select{
  width:100%;
  height:52px;
  border-radius:10px;
  border:1px solid var(--border);
  background:#f3f3f3;
  padding:0 14px;
  font-size:18px;
  outline:none;
}

.ms-input:focus,
.ms-select:focus{
  background:#fff;
  border-color:#bdbdbd;
}

.ms-btn-primary{
  width:100%;
  height:52px;
  border:none;
  border-radius:12px;
  background:var(--black);
  color:#fff;
  font-weight:800;
  font-size:18px;
  margin-top:16px;
  cursor:pointer;
}

.ms-btn-outline{
  width:100%;
  height:52px;
  border-radius:12px;
  background:#fff;
  color:#000;
  border:1px solid #000;
  font-weight:800;
  font-size:18px;
  margin-top:12px;
  cursor:pointer;
}

.ms-links{
  text-align:center;
  margin-top:16px;
  font-size:16px;
}

.ms-links a{
  color:#2563eb;
  text-decoration:none;
  font-weight:800;
}

.spacer-sm{ height:12px; }

.info-title{
  text-align:center;
  font-size:34px;
  font-weight:800;
  letter-spacing:1px;
  color:#777;
  margin:10px 0 22px;
}

.info-page,
.public-static-container{
  width:100%;
  margin:0 auto;
}

.info-card,
.public-static-card{
  background:#fff;
  border-radius:24px;
  padding:34px 38px 40px;
  box-shadow:0 18px 44px rgba(0,0,0,0.08);
}

.info-page-intro,
.info-page-updated{
  color:#556072;
  margin:0 0 14px;
  line-height:1.65;
}

.info-text{
  text-align:left;
  color:#1f2937;
}

.info-text section + section{
  margin-top:24px;
}

.info-text h2{
  font-size:20px;
  margin:0 0 10px;
}

.info-text p{
  margin:0 0 12px;
  line-height:1.72;
}

.public-static-header{
  margin-bottom:6px;
}

.public-static-footer-shell{
  width:100%;
  margin-top:24px;
}

.ig-footer{
  width:100%;
  margin:0;
  padding:0;
}

.ig-footer-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  width:100%;
  margin:0;
  font-size:14px;
  font-weight:700;
  letter-spacing:0.02em;
}

.ig-footer a{
  color:#1f2937;
  text-decoration:none;
}

.ig-footer a:hover{
  text-decoration:underline;
}

.ig-footer-sep{
  color:#9ca3af;
}

.site-footer{
  width:100%;
  border-top:1px solid rgba(0,0,0,0.08);
  margin-top:28px;
  padding:16px 0;
}

.site-footer-container{
  width:min(980px, calc(100% - 32px));
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.site-footer-copy{
  font-size:13px;
  opacity:0.7;
}

.site-footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  font-size:13px;
}

.site-footer-links a{
  color:inherit;
  text-decoration:none;
}

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

.info-form{ text-align:left; }

@media (max-width: 768px){
  .info-card,
  .public-static-card{
    padding:24px 22px 28px;
    border-radius:20px;
  }

  .info-title{
    font-size:28px;
    margin:4px 0 18px;
  }

  .ig-footer-links{
    gap:8px;
    font-size:13px;
  }

  .site-footer-container{
    width:min(980px, calc(100% - 24px));
    justify-content:center;
    text-align:center;
  }

  .site-footer-links{
    justify-content:center;
  }
}

@media (max-width: 980px){
  .auth-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .auth-left{
    justify-content:center;
  }

  .logo-auth-big{
    width:420px;
  }
}
