*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#0f172a;
    overflow:hidden;
}

.bg{
    position:fixed;
    inset:0;
    background:
    radial-gradient(circle at top left,#3b82f6 0%,transparent 35%),
    radial-gradient(circle at bottom right,#22c55e 0%,transparent 35%),
    #0f172a;
    filter:blur(80px);
    opacity:.45;
    z-index:-1;
}

.login-card{

    width:430px;
    max-width:95%;

    padding:45px;

    border-radius:28px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.15);

    box-shadow:
    0 20px 60px rgba(0,0,0,.45);

    text-align:center;

    animation:fadeUp .8s ease;

}

.logo-circle{

    width:90px;
    height:90px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#22c55e,#16a34a);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:42px;

    color:white;

    margin-bottom:25px;

    box-shadow:0 10px 30px rgba(34,197,94,.4);

}

h1{

    color:white;

    font-size:34px;

    font-weight:700;

}

p{

    color:#cbd5e1;

    margin-top:10px;

    margin-bottom:30px;

}

.form-control{

    height:58px;

    border-radius:15px;

    border:none;

    background:rgba(255,255,255,.1);

    color:white;

}

.form-control:focus{

    background:rgba(255,255,255,.15);

    color:white;

    border:none;

    box-shadow:0 0 0 4px rgba(34,197,94,.25);

}

.form-control::placeholder{

    color:#cbd5e1;

}

.btn-success{

    height:56px;

    border-radius:15px;

    font-weight:600;

    font-size:17px;

    transition:.3s;

}

.btn-success:hover{

    transform:translateY(-3px);

}

.footer{

    margin-top:30px;

    color:#94a3b8;

    font-size:13px;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}