*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Segoe UI,sans-serif;
}

body{
    min-height:100vh;
    background:linear-gradient(
    135deg,
    #eef4ff,
    #ffffff,
    #f1f5f9
    );
}

.login-container{
    max-width:1200px;
    min-height:100vh;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:50px;
    padding:20px;
}

.login-logo{
    width:220px;
}

.left-section h1{
    margin-top:20px;
    font-size:60px;
    font-weight:800;
    color:#0f172a;
}

.left-section p{
    margin-top:15px;
    line-height:28px;
    color:#64748b;
}

.card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:
    0 10px 30px rgba(0,0,0,.08);
}

.login-header{
    display:flex;
    gap:15px;
    margin-bottom:25px;
}

.shield-icon{
    font-size:30px;
}

.login-header h2{
    font-size:28px;
}

.login-header small{
    color:#64748b;
}

.form-group{
    margin-bottom:15px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.form-group input{
    width:100%;
    padding:12px 15px;
    border:1px solid #cbd5e1;
    border-radius:12px;
    outline:none;
}

.form-group input:focus{
    border-color:#be123c;
}

.btn-primary{
    width:100%;
    border:none;
    background:#be123c;
    color:#fff;
    padding:14px;
    border-radius:12px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
}

.btn-primary:hover{
    background:#9f1239;
}

.error-box{
    background:#fef2f2;
    color:#b91c1c;
    padding:12px;
    border-radius:12px;
    margin-bottom:15px;
    font-weight:600;
}

@media(max-width:768px){

.login-container{
    grid-template-columns:1fr;
}

.left-section h1{
    font-size:40px;
}

}
:root{
    --app-header-height:72px;
    font-family:Inter,Segoe UI,sans-serif;
}

body{
    margin:0;
    background:#f8fafc;
    color:#0f172a;
}

.form-label{
    display:block;
    font-size:12px;
    font-weight:600;
    color:#475569;
    margin-bottom:6px;
}

.form-input{
    width:100%;
    margin-top:4px;
    padding:12px 16px;
    border:1px solid #e2e8f0;
    border-radius:16px;
    background:#fff;
    font-size:14px;
    color:#0f172a;
    box-sizing:border-box;
}

.form-input:focus{
    outline:none;
    border-color:#be123c;
    box-shadow:0 0 0 4px rgba(124,58,237,.1);
}

.card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:24px;
    padding:24px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.btn-primary{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    gap:8px;
    background:#be123c;
    color:#fff;
    border:none;
    border-radius:16px;
    padding:14px;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
}

.btn-primary:hover{
    background:#9f1239;
}

.btn-primary:disabled{
    opacity:.6;
    cursor:not-allowed;
}

.field-error{
    margin-top:10px;
    padding:12px;
    background:#fef2f2;
    color:#dc2626;
    border-radius:14px;
    font-size:13px;
    font-weight:700;
}

.login-logo{
    width:280px;
    max-width:100%;
    object-fit:contain;
}

.app-logo{
    width:46px;
    height:46px;
    object-fit:contain;
}
.success-box {
    background: #f2fef5;
    color: #30b91c;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 15px;
    font-weight: 600;
}