.loginPage{
  min-height:100vh;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:
    radial-gradient(circle at top right, rgba(8,103,242,.14), transparent 32%),
    linear-gradient(135deg,#f8fbff,#eaf4ff);
}

.loginCard{
  width:100%;
  max-width:430px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  padding:30px 24px;
  box-shadow:var(--shadow);
}

.loginLogo{
  text-align:center;
  margin-bottom:28px;
}

.loginLogo h1{
  color:var(--blue);
  font-size:34px;
  line-height:1;
  letter-spacing:-1px;
}

.loginLogo h1 span{
  color:var(--navy);
  font-size:42px;
}

.loginLogo p{
  margin-top:10px;
  color:var(--muted);
  font-weight:700;
}

.loginHero{
  text-align:center;
  padding:24px 18px;
  border-radius:24px;
  background:linear-gradient(135deg,var(--blue-dark),var(--blue));
  color:white;
  margin-bottom:24px;
}

.giftIcon{
  width:66px;
  height:66px;
  border-radius:50%;
  background:rgba(255,255,255,.16);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 14px;
  font-size:34px;
}

.loginHero h2{
  font-size:25px;
  margin-bottom:8px;
}

.loginHero p{
  font-size:14px;
  line-height:1.45;
  opacity:.95;
}

#loginForm{
  display:flex;
  flex-direction:column;
  gap:10px;
}

#loginForm label{
  color:var(--navy);
  font-size:14px;
  font-weight:800;
}

#loginForm input{
  width:100%;
  height:54px;
  border:1px solid var(--line);
  border-radius:999px;
  padding:0 18px;
  font-size:16px;
  outline:none;
}

#loginForm input:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 4px rgba(8,103,242,.12);
}

#loginForm button{
  height:54px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--blue-dark),var(--blue));
  color:white;
  font-size:16px;
  font-weight:900;
  margin-top:8px;
}

.loginNote{
  display:block;
  margin-top:18px;
  color:var(--muted);
  text-align:center;
  line-height:1.4;
}/* ===========================
   HOME BUTTON
=========================== */

.homeLink{
    position:fixed;
    top:18px;
    right:18px;

    width:46px;
    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#ffffff;
    color:#0b57d0;

    text-decoration:none;
    font-size:22px;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

    transition:.25s;

    z-index:9999;
}

.homeLink:hover{
    transform:translateY(-2px) scale(1.08);
    background:#0b57d0;
    color:#ffffff;
}

@media(max-width:768px){

    .homeLink{
        top:12px;
        right:12px;
        width:42px;
        height:42px;
        font-size:20px;
    }

}