body{
    font-family: Inter, sans-serif;
    background:#f6f8fb;
}

.auth-card{
    width:100%;
    max-width:450px;
    background:#fff;
    padding:30px;
    border-radius:24px;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.logo{
    width:120px;
    height:auto;
}

.form-control{
    border-radius:12px;
}

.btn{
    border-radius:12px;
}

.role-card{
    background:#fff;
    border:2px solid #e9ecef;
    border-radius:18px;
    padding:25px;
    text-align:center;
    cursor:pointer;
    transition:.3s;
    height:100%;
}

.role-card:hover{
    transform:translateY(-4px);
    border-color:#198754;
}

.role-card .emoji{
    font-size:40px;
    margin-bottom:10px;
}

.role-card h5{
    font-weight:700;
}

.role-card p{
    font-size:14px;
    color:#6c757d;
}

.dashboard-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.dashboard-card{
    background:#fff;
    border-radius:16px;
    padding:30px 20px;
    text-align:center;
    box-shadow:0 4px 20px rgba(0,0,0,.05);
    font-weight:600;
    cursor:pointer;
}

.dashboard-card:hover{
    transform:translateY(-3px);
    transition:.3s;
}

#loader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(255,255,255,.8);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
}