/* 🔥 BACKGROUND (FULL SCREEN, NO BLUR) */
body {
    margin: 0;
    height: 100vh;
    font-family: 'Segoe UI', sans-serif;

    background: url('/images/WEB2.png') no-repeat center center fixed;
    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* WRAPPER */
.login-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 💎 GLASS CARD */
.login-box {
    position: relative;
    width: 380px;
    padding: 60px 30px 35px;
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.25);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.6),
        inset 0 0 25px rgba(255,255,255,0.15);

    text-align: center;
}

/* 🔵 LOGO FLOATING PERFECT ALIGN */
.logo-circle {
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);

    width: 85px;
    height: 85px;
    border-radius: 50%;

    background: linear-gradient(135deg, #00c6ff, #0072ff);

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow:
        0 15px 30px rgba(0,0,0,0.5),
        inset 0 0 10px rgba(255,255,255,0.4);
}

/* LOGO */
.logo-circle img {
    width: 48px;
}

/* 🔤 TEXT EXACT SPACING */
.login-box h3 {
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 700;
    color: #002b5c;
    letter-spacing: 0.5px;
}

.login-box p {
    font-size: 13px;
    color: rgba(0,0,0,0.6);
    margin-bottom: 20px;
}

/* 📥 INPUT FIELD */
.input-box {
    position: relative;
    margin-bottom: 15px;
}

.input-box input {
    width: 100%;
    height: 45px;
    padding: 0 42px;

    border-radius: 10px;
    border: none;
    outline: none;

    background: rgba(255,255,255,0.95);

    font-size: 14px;

    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

/* ICON LEFT */
.input-box span {
    position: absolute;
    left: 14px;
    top: 12px;
    font-size: 14px;
}

/* ICON RIGHT */
.input-box i {
    position: absolute;
    right: 14px;
    top: 12px;
    cursor: pointer;
}

/* 🔘 BUTTON EXACT */
.btn-login {
    width: 100%;
    height: 45px;
    margin-top: 10px;

    border-radius: 10px;
    border: none;

    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: white;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.4);

    transition: all 0.25s ease;
}

/* HOVER */
.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

/* 📱 RESPONSIVE EXACT */
@media (max-width: 480px) {
    .login-box {
        width: 90%;
        padding: 55px 20px 30px;
    }

    .logo-circle {
        width: 75px;
        height: 75px;
        top: -38px;
    }
}