.noxera-login-page{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:50px 20px;

    background:#f5f7ff;

}



.noxera-login-card{

    width:100%;

    max-width:480px;

    background:white;

    padding:45px;

    border-radius:30px;

    box-shadow:0 20px 60px rgba(0,0,0,0.12);

}



.noxera-login-header{

    text-align:center;

    margin-bottom:35px;

}



.noxera-login-header h1{

    font-size:30px;

    color:#111827;

    margin:20px 0 10px;

}



.noxera-login-header p{

    color:#64748b;

}



.noxera-login-form button{

    width:100%;

    height:56px;

    border:none;

    border-radius:30px;

    background:linear-gradient(
        90deg,
        #005dfe,
        #ae0afe
    );

    color:white;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

}



.noxera-remember{

    display:flex;

    align-items:center;

    gap:10px;

    margin:20px 0;

    font-size:14px;

    color:#64748b;

}



.noxera-login-links{

    text-align:center;

    margin-top:25px;

    font-size:14px;

}



.noxera-login-links a{

    color:#005dfe;

    text-decoration:none;

    font-weight:600;

}


@media(max-width:600px){

    .noxera-login-card{

        padding:30px 20px;

    }

}