
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    min-height:100vh;
    overflow-x:hidden;
    background:linear-gradient(135deg,#021B79,#0575E6);
    position:relative;
}

/* =============================
   Animated Background
============================= */

.background-area{
    position:fixed;
    width:100%;
    height:100%;
    overflow:hidden;
    top:0;
    left:0;
    z-index:0;
}

.background-area li{
    position:absolute;
    display:block;
    list-style:none;
    width:25px;
    height:25px;
    background:rgba(255,255,255,0.12);
    animation:animate 20s linear infinite;
    bottom:-150px;
    border-radius:20px;
}

.background-area li:nth-child(1){
    left:25%;
    width:80px;
    height:80px;
    animation-delay:0s;
}

.background-area li:nth-child(2){
    left:10%;
    width:20px;
    height:20px;
    animation-delay:2s;
    animation-duration:12s;
}

.background-area li:nth-child(3){
    left:70%;
    width:20px;
    height:20px;
    animation-delay:4s;
}

.background-area li:nth-child(4){
    left:40%;
    width:60px;
    height:60px;
    animation-delay:0s;
    animation-duration:18s;
}

.background-area li:nth-child(5){
    left:65%;
    width:20px;
    height:20px;
    animation-delay:0s;
}

.background-area li:nth-child(6){
    left:75%;
    width:110px;
    height:110px;
    animation-delay:3s;
}

.background-area li:nth-child(7){
    left:35%;
    width:150px;
    height:150px;
    animation-delay:7s;
}

.background-area li:nth-child(8){
    left:50%;
    width:25px;
    height:25px;
    animation-delay:15s;
    animation-duration:45s;
}

@keyframes animate {

    0%{
        transform:translateY(0) rotate(0deg);
        opacity:1;
        border-radius:20%;
    }

    100%{
        transform:translateY(-1000px) rotate(720deg);
        opacity:0;
        border-radius:50%;
    }

}

/* =============================
   Main Wrapper
============================= */

.login-wrapper{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    z-index:2;
    padding:20px;
}

/* =============================
   Login Card
============================= */

.login-card{
    width:100%;
    max-width:430px;
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.2);
    backdrop-filter:blur(15px);
    border-radius:25px;
    padding:40px 35px;
    box-shadow:0 15px 40px rgba(0,0,0,0.3);
    animation:fadeUp 1s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =============================
   Logo
============================= */

.logo-area{
    text-align:center;
    margin-bottom:20px;
}

.logo-area img{
    width:90px;
    height:90px;
    object-fit:contain;
    background:#fff;
    border-radius:50%;
    padding:8px;
    box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

/* =============================
   Title
============================= */

.login-title{
    text-align:center;
    color:#fff;
    font-size:28px;
    font-weight:700;
    margin-top:15px;
}

.login-subtitle{
    text-align:center;
    color:rgba(255,255,255,0.8);
    font-size:14px;
    margin-bottom:30px;
}

/* =============================
   Form
============================= */

.form-control{
    height:52px;
    border:none;
    border-radius:14px;
    background:rgba(255,255,255,0.15);
    color:#fff;
    margin-bottom:18px;
    padding-left:18px;
    font-size:15px;
    box-shadow:none;
    transition:0.3s;
}

.form-control::placeholder{
    color:rgba(255,255,255,0.75);
}

.form-control:focus{
    background:rgba(255,255,255,0.25);
    border:1px solid #fff;
    box-shadow:none;
    color:#fff;
}

/* =============================
   Button
============================= */

.login-btn{
    width:100%;
    height:52px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#00c6ff,#0072ff);
    color:#fff;
    font-size:16px;
    font-weight:600;
    transition:0.4s;
    margin-top:5px;
    box-shadow:0 10px 25px rgba(0,114,255,0.4);
}

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

/* =============================
   Google Button
============================= */

.google-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    height:50px;
    border-radius:14px;
    background:#fff;
    color:#444;
    text-decoration:none;
    margin-top:15px;
    font-weight:600;
    transition:0.3s;
}

.google-btn:hover{
    background:#f5f5f5;
    text-decoration:none;
    color:#000;
    transform:translateY(-2px);
}

/* =============================
   Footer
============================= */

.footer-text{
    text-align:center;
    color:rgba(255,255,255,0.8);
    margin-top:25px;
    font-size:13px;
    line-height:24px;
}

.footer-text a{
    color:#FFD700;
}

.footer-text a:hover{
    color:#fff;
    text-decoration:none;
}

/* =============================
   Alert
============================= */

.custom-alert{
    border-radius:12px;
    margin-bottom:20px;
    font-size:14px;
}

/* =============================
   Responsive
============================= */

@media(max-width:768px){

    .login-card{
        padding:30px 25px;
    }

    .login-title{
        font-size:24px;
    }

}

@media(max-width:480px){

    .login-card{
        padding:25px 18px;
        border-radius:20px;
    }

    .logo-area img{
        width:75px;
        height:75px;
    }

    .login-title{
        font-size:22px;
    }

    .form-control{
        height:48px;
        font-size:14px;
    }

    .login-btn{
        height:48px;
    }

}