body{
    min-height:100vh;
    margin:0;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(180deg,#fafbfc 0%,#f4f6f9 100%);
    font-family:'Montserrat',sans-serif;
    color:#111827;
}

.login-card{
    width:100%;
    max-width:420px;
    background:#ffffff;
    border:1px solid #edf0f4;
    border-radius:24px;
    padding:38px;
    box-shadow:0 12px 35px rgba(15,23,42,.06);
}

.login-logo{
    width:90px;
    height:90px;
    object-fit:contain;
    display:block;
    margin:0 auto 18px;
}

.login-title{
    text-align:center;
    font-weight:800;
    margin-bottom:4px;
}

.login-subtitle{
    text-align:center;
    color:#6b7280;
    font-size:14px;
    margin-bottom:24px;
}

.form-label{
    font-size:13px;
    font-weight:600;
    color:#374151;
}

.form-control{
    border-radius:12px;
    min-height:44px;
    border:1px solid #e5e7eb;
    font-size:14px;
}

.form-control:focus{
    border-color:#ff9c22;
    box-shadow:0 0 0 3px rgba(255,156,34,.14);
}

.btn-login{
    width:100%;
    border:0;
    border-radius:12px;
    padding:10px 14px;
    background:#ff9c22;
    color:#111827;
    font-weight:700;
    font-size:14px;
}

.btn-login:hover{
    background:#f59a18;
}

.login-footer{
    text-align:center;
    margin-top:22px;
    font-size:12px;
    color:#6b7280;
}

.alert{
    border-radius:12px;
    font-size:14px;
}