.login-page{
    min-height:calc(100vh - 72px);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 20px;
    background:#F6F8FB;
}

.login-card{
    width:100%;
    max-width:460px;
    background:#FFF;
    border:1px solid #E5E7EB;
    border-radius:22px;
    padding:40px;
    box-shadow:0 12px 30px rgba(15,23,42,.08);
}

.login-logo{
    text-align:center;
    font-size:28px;
    font-weight:800;
    color:#2563EB;
    letter-spacing:2px;
    margin-bottom:12px;
}

.login-card h1{
    margin:0;
    text-align:center;
    font-size:32px;
    color:#111827;
}

.login-subtitle{
    margin:12px 0 32px;
    text-align:center;
    color:#6B7280;
    line-height:1.6;
}

.login-group{
    margin-bottom:22px;
}

.login-group label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:600;
    color:#374151;
}

.login-group input{
    width:100%;
    height:50px;
    padding:0 16px;
    border:1px solid #D1D5DB;
    border-radius:12px;
    outline:none;
    font-size:15px;
    transition:.2s;
    box-sizing:border-box;
}

.login-group input:focus{
    border-color:#2563EB;
    box-shadow:0 0 0 3px rgba(37,99,235,.12);
}

.login-options{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:28px;
    font-size:14px;
}

.remember{
    display:flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
}

.login-options a{
    color:#2563EB;
    text-decoration:none;
}

.login-options a:hover{
    text-decoration:underline;
}

.login-button{
    width:100%;
    height:52px;
    border:none;
    border-radius:14px;
    background:#2563EB;
    color:#FFF;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.2s;
}

.login-button:hover{
    background:#1D4ED8;
}

.login-footer{
    margin-top:28px;
    text-align:center;
    color:#6B7280;
    font-size:14px;
}

.login-footer a{
    color:#2563EB;
    font-weight:600;
    text-decoration:none;
}

.login-footer a:hover{
    text-decoration:underline;
}

@media (max-width:768px){

    .login-page{
        padding:24px 16px;
    }

    .login-card{
        padding:28px 22px;
        border-radius:18px;
    }

    .login-card h1{
        font-size:28px;
    }

    .login-options{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

}
