/* Login moderno responsivo - Falcon */
*{box-sizing:border-box}
body.auth-body{
  min-height:100vh;
  margin:0;
  background:
    radial-gradient(circle at 88% -8%, rgba(49,92,38,.14), transparent 34%),
    radial-gradient(circle at 18% 88%, rgba(49,92,38,.10), transparent 28%),
    linear-gradient(135deg,#f8fbff 0%,#edf3f9 100%) !important;
  overflow-x:hidden;
}
.auth-page{
  width:100%;
  min-height:100vh;
  max-width:1440px;
  margin:0 auto;
  padding:clamp(18px,4vw,56px);
  display:grid;
  grid-template-columns:minmax(320px,520px) minmax(0,1fr);
  gap:clamp(26px,6vw,96px);
  align-items:center;
}
.auth-panel{display:flex;align-items:center;justify-content:center;width:100%;order:1}
.loginbox.auth-form{
  width:min(450px,100%);
  margin:0;
  border-radius:30px;
  padding:clamp(24px,3vw,38px);
  background:rgba(255,255,255,.96);
  border:1px solid rgba(220,229,241,.95);
  box-shadow:0 28px 80px rgba(8,18,38,.13);
  backdrop-filter:blur(18px);
}
.auth-form-head{text-align:center;margin-bottom:24px}
.auth-form-logo{
  width:clamp(72px,8vw,96px) !important;
  height:clamp(72px,8vw,96px) !important;
  max-width:96px !important;
  max-height:96px !important;
  object-fit:contain !important;
  display:block;
  margin:0 auto 16px;
  padding:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
}
.auth-form-head span{display:block;color:#315c26;font-weight:800;font-size:15px;letter-spacing:.04em;margin-bottom:8px}
.auth-form-head h2{margin:0 0 10px;color:#071326;font-size:clamp(28px,3.2vw,36px);line-height:1.1;letter-spacing:-.03em}
.auth-form-head p{margin:0;color:#60708a;line-height:1.55;font-size:15px}
.auth-field{margin-bottom:14px}
.auth-field label{display:block;margin-bottom:8px;color:#142033;font-weight:800;font-size:13px}
.auth-field input{
  width:100%;
  min-height:54px;
  border-radius:16px;
  border:1px solid #d9e2ee;
  background:#fff;
  color:#142033;
  padding:0 16px;
  outline:none;
  transition:border-color .18s,box-shadow .18s;
}
.auth-field input:focus{border-color:#315c26;box-shadow:0 0 0 4px rgba(49,92,38,.12)}
.auth-actions{display:grid;gap:12px;margin-top:18px}
.auth-submit,.primary.auth-submit,button.primary.auth-submit{
  width:100%;
  min-height:54px;
  border-radius:16px;
  font-weight:900;
  font-size:15px;
  background:linear-gradient(135deg,#315c26,#4f812f) !important;
  border-color:#315c26 !important;
  box-shadow:0 16px 34px rgba(49,92,38,.22) !important;
}
.auth-link{display:flex;align-items:center;justify-content:center;min-height:46px;border-radius:15px;background:#f8fbff;text-decoration:none;color:#142033;font-weight:800}
.auth-link:hover{background:#f1f6ef;border-color:rgba(49,92,38,.24)}
.auth-foot{text-align:center;margin:22px 0 0;color:#60708a;font-size:12px;font-weight:700;line-height:1.5}
.auth-hero{display:flex;align-items:center;justify-content:center;color:#102247;order:2;min-width:0}
.auth-hero-card{width:min(540px,100%);text-align:center;background:transparent;border:0;box-shadow:none;padding:0;overflow:visible}
.auth-hero-card:after{display:none!important}
.auth-brand{display:flex;flex-direction:column;align-items:center;gap:14px;margin:0 0 22px}
.auth-brand img{
  width:clamp(120px,16vw,190px) !important;
  height:clamp(120px,16vw,190px) !important;
  max-width:190px !important;
  max-height:190px !important;
  object-fit:contain !important;
  display:block;
  padding:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
}
.auth-brand span{display:block;color:#315c26;font-size:14px;font-weight:900;letter-spacing:.20em;text-transform:uppercase}
.auth-brand h1{margin:0;color:#315c26;font-size:clamp(34px,4.6vw,58px);font-weight:950;line-height:1;letter-spacing:-.04em}
.auth-hero h2,.auth-hero p{display:none}
.auth-benefits{display:flex;flex-wrap:wrap;gap:8px;justify-content:center;margin:0}
.auth-benefits span{padding:9px 13px;border-radius:999px;color:#315c26;background:rgba(255,255,255,.72);border:1px solid rgba(49,92,38,.18);box-shadow:0 10px 30px rgba(8,18,38,.05);font-weight:800;font-size:13px}
.notice,.alert{border-radius:14px;padding:12px 14px;margin:0 0 16px;font-weight:700;font-size:14px}.alert{background:#fff1f2;color:#9f1239;border:1px solid #fecdd3}.notice{background:#eefdf3;color:#166534;border:1px solid #bbf7d0}
@media(max-width:920px){
  .auth-page{grid-template-columns:1fr;gap:22px;padding:18px;align-items:start}
  .auth-panel{order:1}.auth-hero{order:2}.auth-hero-card{padding:6px 0 20px}
  .auth-brand img{width:112px !important;height:112px !important}
  .auth-brand h1{font-size:34px}
}
@media(max-width:520px){
  .auth-page{padding:12px}.loginbox.auth-form{border-radius:22px;padding:20px}
  .auth-form-logo{width:74px !important;height:74px !important}.auth-brand img{width:94px !important;height:94px !important}
  .auth-brand h1{font-size:30px}.auth-benefits{flex-direction:column;align-items:center}.auth-benefits span{width:100%;max-width:260px;text-align:center}
}
