/* Hintergrund */
.loginBody {
  min-height: 100vh;
  background: radial-gradient(1200px 600px at 20% 10%, #1075e1, transparent 60%),
              radial-gradient(900px 500px at 80% 20%, #0e2158, transparent 55%),
              radial-gradient(900px 600px at 50% 80%, #040919, transparent 55%),
              #0b0f14;
  display: grid;
  place-items: center;
  padding: 18px;
  overflow: hidden;
}

.loginWrap {
  width: min(520px, 100%);
}

.loginCard {
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
  animation: floatIn .35s ease-out;
}

@keyframes floatIn {
  from { transform: translateY(10px); opacity: .0; }
  to   { transform: translateY(0); opacity: 1; }
}

.loginHeader{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.logoPulse{  
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(70,180,255,1), rgba(120,255,160,1));
  box-shadow: 0 0 0 0 rgba(70,180,255,.40);
  animation: pulse 1.8s infinite;
  
  background-image: url("../img/b3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(70,180,255,.45); }
  70%  { box-shadow: 0 0 0 16px rgba(70,180,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(70,180,255,0); }
}

.loginTitle{
 font-size: 22px;
  font-weight: 900;
  letter-spacing: .4px;

  background: linear-gradient(300deg, #0270e2, #040919);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  filter: drop-shadow(0 0 1.2px rgba(255,255,255,0.85));
}

.loginSub{
  font-size: 12px;
  opacity: .7;
  color: #d6e5ff;
}

.loginForm{
  display: grid;
  gap: 12px;
}

.field label{
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  color: rgba(255,255,255,.85);
}

.field input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.25);
  color: #fff;
  outline: none;
}

.field input:focus{
  border-color: rgba(70,180,255,.8);
  box-shadow: 0 0 0 4px rgba(70,180,255,.20);
}

.pwRow{
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 10px;
}

.iconBtn{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.25);
  color: white;
  cursor: pointer;
}

.btnLogin{
  margin-top: 6px;
  width: 100%;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  cursor: pointer;
  color: #071018;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .4px;
  background: linear-gradient(135deg, rgba(70,180,255,1), rgba(120,255,160,1));
  transition: transform .08s ease, filter .2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.btnLogin:hover { filter: brightness(1.05); }
.btnLogin:active { transform: scale(.98); }

.btnLoader{
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,.22);
  border-top-color: rgba(0,0,0,.65);
  animation: spin .65s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loginMeta{
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 6px;
  opacity: .7;
}

.loginFooter{
  margin-top: 14px;
  display: flex;
  justify-content: center;
  opacity: .7;
}
