body.auth-page{
  margin:0;
  min-height:100vh;
  font-family:Arial, Helvetica, sans-serif;
  color:#18213d;
  background:
    radial-gradient(circle at 12% 8%, rgba(33, 91, 230, .18) 0 90px, transparent 92px),
    radial-gradient(circle at 96% 92%, rgba(33, 91, 230, .35) 0 180px, transparent 182px),
    linear-gradient(180deg,#f8fbff 0%, #eef6ff 48%, #d9eaff 100%);
}

.auth-shell{
  width:100%;
  max-width:430px;
  margin:0 auto;
  padding:42px 18px 26px;
}

.auth-card{
  background:rgba(255,255,255,.96);
  border-radius:28px;
  padding:34px 24px 26px;
  box-shadow:0 24px 60px rgba(24,70,170,.18);
  border:1px solid rgba(33,69,199,.10);
  overflow:hidden;
}

.auth-logo{
  display:block;
  width:190px;
  max-width:72%;
  height:auto;
  margin:0 auto 24px;
  background:#ffffff;
  padding:10px 16px;
  border-radius:18px;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
}

.auth-title{
  font-size:38px;
  line-height:1.05;
  margin:0;
  color:#16213d;
  text-align:center;
  font-weight:900;
  letter-spacing:-.045em;
}

.auth-accent{
  width:48px;
  height:6px;
  border-radius:99px;
  margin:18px auto 18px;
  background:linear-gradient(90deg,#7db2ff,#2145ff);
  position:relative;
}

.auth-accent:after{
  content:"";
  position:absolute;
  right:-13px;
  top:0;
  width:7px;
  height:7px;
  border-radius:50%;
  background:#2145ff;
}

.auth-copy{
  color:#66718a;
  text-align:center;
  font-size:18px;
  line-height:1.45;
  margin:0 0 28px;
}

.auth-form{
  margin-top:8px;
}

.auth-field{
  position:relative;
  margin-bottom:13px;
}

.auth-field span{
  position:absolute;
  left:18px;
  top:50%;
  transform:translateY(-50%);
  color:#245bff;
  font-size:21px;
  z-index:2;
}

.auth-field input{
  width:100%;
  height:62px;
  padding:0 52px 0 58px;
  border-radius:17px;
  border:1px solid #dce4f1;
  background:#fff;
  color:#16213d;
  font-size:18px;
  outline:none;
  box-shadow:0 8px 22px rgba(31,72,160,.04);
}

.auth-field input::placeholder{
  color:#79849a;
}

.auth-field input:focus{
  border-color:#2a63ff;
  box-shadow:0 0 0 4px rgba(42,99,255,.10);
}

.password-eye{
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-50%);
  color:#7a8598;
  font-size:21px;
}

.auth-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  margin:10px 0 20px;
  color:#66718a;
  font-size:15px;
}

.remember{
  display:flex;
  align-items:center;
  gap:9px;
  white-space:nowrap;
}

.remember input{
  width:22px;
  height:22px;
  margin:0;
  accent-color:#2145ff;
}

.auth-row a{
  color:#2145ff;
  text-decoration:none;
  font-weight:700;
}

.auth-submit{
  width:100%;
  height:64px;
  border:0;
  border-radius:18px;
  margin-top:0;
  color:#fff;
  font-size:19px;
  font-weight:800;
  cursor:pointer;
  background:linear-gradient(135deg,#2e82ff 0%, #2145ff 100%);
  box-shadow:0 16px 32px rgba(33,69,255,.24);
}

.auth-divider{
  display:flex;
  align-items:center;
  gap:15px;
  color:#8b95a7;
  margin:25px 0 18px;
}

.auth-divider:before,
.auth-divider:after{
  content:"";
  flex:1;
  height:1px;
  background:#e2e9f3;
}

.auth-alt{
  text-align:center;
  color:#66718a;
  font-size:17px;
  margin:0 0 8px;
}

.auth-alt a{
  color:#2145ff;
  font-weight:800;
  text-decoration:none;
}

.auth-trust{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  border-top:1px solid #e6edf7;
  margin:30px -24px -26px;
  padding:22px 8px 18px;
}

.auth-trust-item{
  text-align:center;
  padding:0 6px;
  color:#66718a;
  font-size:12px;
  border-right:1px solid #e1e8f2;
}

.auth-trust-item:last-child{
  border-right:0;
}

.auth-trust-icon{
  width:43px;
  height:43px;
  border-radius:50%;
  margin:0 auto 8px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#eef5ff;
  color:#2145ff;
  font-size:22px;
  font-weight:800;
}

.auth-trust-item strong{
  display:block;
  color:#245bff;
  font-size:14px;
  margin-bottom:3px;
}

.auth-notice{
  padding:13px;
  border-radius:15px;
  margin:0 0 17px;
  background:#eef5ff;
  border:1px solid #cfe0ff;
  color:#1a397a;
  line-height:1.4;
}

.auth-error{
  padding:13px;
  border-radius:15px;
  margin:0 0 17px;
  background:#fff0f0;
  border:1px solid #ffc7c7;
  color:#9f2222;
  line-height:1.4;
}

@media(max-width:420px){
  .auth-shell{
    padding:28px 14px 18px;
  }

  .auth-card{
    padding:30px 18px 22px;
    border-radius:24px;
  }

  .auth-logo{
    width:170px;
  }

  .auth-title{
    font-size:32px;
  }

  .auth-copy{
    font-size:16px;
  }

  .auth-field input{
    height:58px;
    font-size:16px;
  }

  .auth-submit{
    height:60px;
    font-size:18px;
  }

  .auth-row{
    font-size:14px;
  }

  .auth-trust{
    margin-left:-18px;
    margin-right:-18px;
  }
}
