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

body{

    background:linear-gradient(135deg,#0d6efd,#1d3557);

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:100vh;

}

.login-card{

    width:430px;

    background:#fff;

    border-radius:18px;

    padding:40px;

    box-shadow:0 15px 40px rgba(0,0,0,.25);

}

.logo{

    width:90px;

    display:block;

    margin:auto;

}

.login-card h1{

    margin-top:15px;

    text-align:center;

    color:#0057A8;

}

.login-card p{

    text-align:center;

    margin-bottom:30px;

    color:#666;

}

.form-group{

    margin-bottom:20px;

}

.form-group label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

}

.form-group input{

    width:100%;

    padding:13px;

    border:1px solid #ccc;

    border-radius:8px;

    font-size:15px;

}

.password-box{

    display:flex;

}

.password-box input{

    flex:1;

    border-radius:8px 0 0 8px;

}

.password-box button{

    width:55px;

    border:none;

    background:#0057A8;

    color:white;

    cursor:pointer;

    border-radius:0 8px 8px 0;

    font-size:18px;

}

.login-options{

    display:flex;

    justify-content:space-between;

    margin-bottom:25px;

    font-size:14px;

}

.login-options a{

    color:#0057A8;

    text-decoration:none;

}

.login-btn{

    width:100%;

    padding:14px;

    background:#0057A8;

    color:white;

    border:none;

    border-radius:8px;

    font-size:17px;

    cursor:pointer;

}

.login-btn:hover{

    background:#003d73;

}

.help-box{

    margin-top:25px;

    padding:15px;

    background:#eef5ff;

    border-left:5px solid #0057A8;

    border-radius:8px;

    font-size:14px;

}

.message{

    background:#fdecea;

    color:#b00020;

    padding:10px;

    border-radius:8px;

    margin-bottom:20px;

}