/* ===============================
   🌈 BACKGROUND — RETINA BLUE
   =============================== */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #1e90ff 0%, #2196f3 40%, #f4faff 100%);
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding: 20px;
    overflow: hidden;
    color-scheme: light;
}

/* Glow (STATIC + ringan, tampilan sama) */
.login-page::before {
    content: "";
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(circle at 30% 25%, rgba(0,132,255,.18), transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(255,215,0,.08), transparent 70%);
    filter: blur(55px);
    opacity: .9;
    transform: translateZ(0);
    z-index: 0;
}

/* ===============================
   🪟 LOGIN BOX — DEPTH GLASS (LITE)
   =============================== */
.login-container {
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 1;
}

.login-box {
    background: rgba(255,255,255,.94);
    /* glass look TANPA realtime blur */
    border: 1px solid rgba(0,102,255,.22);
    border-radius: 22px;
    box-shadow:
        0 8px 22px rgba(33,150,243,.22),
        inset 0 0 0 1px rgba(255,255,255,.65);
    padding: 48px 40px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.login-box:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 32px rgba(33,150,243,.3),
        inset 0 0 0 1px rgba(255,255,255,.75);
}

/* ===============================
   🌟 LOGO & TITLE
   =============================== */
.logo-container {
    text-align: center;
    margin-bottom: 22px;
}

.logo {
    width: 85px;
    animation: floatLogo 8s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(30,144,255,.35));
}

@keyframes floatLogo {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.title-container {
    text-align: center;
    margin-bottom: 25px;
}

.title-container h1 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, #005bea, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-container p {
    color: rgba(20,20,20,.65);
    font-size: 14px;
}

/* ===============================
   ✏️ INPUT FIELDS (RAPIH & RINGAN)
   =============================== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
    color: rgba(10,10,10,.8);
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: rgba(33,150,243,.75);
    pointer-events: none;
}

.form-group input {
    width: 100%;
    height: 48px;
    padding: 0 14px 0 44px;
    border-radius: 12px;
    border: 1px solid rgba(0,132,255,.25);
    background: #fff;
    font-size: 14px;
    line-height: 48px;
    box-sizing: border-box;
}

.form-group input:focus {
    border-color: #008cff;
    box-shadow: 0 0 5px rgba(0,140,255,.2);
    outline: none;
}

/* ===============================
   ⚡ LOGIN BUTTON
   =============================== */
.login-btn {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 12px;
    background: linear-gradient(90deg, #0072ff, #00b4ff);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0,114,255,.25);
}

/* ===============================
   ⚙️ FOOTER
   =============================== */
.footer-text {
    text-align: center;
    color: rgba(0,0,0,.6);
    margin-top: 28px;
    font-size: 12.5px;
}

/* ===============================
   📱 RESPONSIVE
   =============================== */
@media (max-width: 768px) {
    .login-box { padding: 36px 26px; }
}

@media (max-width: 480px) {
    .login-container { max-width: 90%; }
    .login-box { padding: 26px 20px; }
    .logo { width: 70px; }
    .title-container h1 { font-size: 21px; }
    .login-btn { font-size: 14px; padding: 11px; }
}
