/* Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* Background */
body{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,#4f46e5,#7c3aed);
}

/* Login Card */
.login-container{
    background:white;
    padding:40px;
    width:380px;
    border-radius:12px;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
    text-align:center;
}

/* Title */
.login-container h1{
    margin-bottom:10px;
    color:#111827;
}

.login-container p{
    color:#6b7280;
    margin-bottom:25px;
}

/* Inputs */
.input-group{
    text-align:left;
    margin-bottom:18px;
}

.input-group label{
    display:block;
    margin-bottom:6px;
    font-weight:600;
}

.input-group input{
    width:100%;
    padding:12px;
    border-radius:8px;
    border:1px solid #d1d5db;
    transition:0.2s;
}

.input-group input:focus{
    border-color:#4f46e5;
    outline:none;
    box-shadow:0 0 0 3px rgba(79,70,229,0.15);
}

/* Button */
.login-btn{
    width:100%;
    padding:12px;
    background:#4f46e5;
    border:none;
    color:white;
    font-weight:bold;
    border-radius:8px;
    cursor:pointer;
    transition:0.2s;
}

.login-btn:hover{
    background:#4338ca;
    transform:translateY(-1px);
}

body{
    background:#f5f6fa;
    font-family: Arial;
}

.dashboard{
    padding:40px;
}

.cards{
    display:flex;
    gap:20px;
    margin-top:20px;
}

.card{
    background:white;
    padding:30px;
    border-radius:10px;
    width:200px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.actions{
    margin-top:40px;
}

.btn{
    display:inline-block;
    padding:12px 20px;
    background:#4CAF50;
    color:white;
    text-decoration:none;
    border-radius:6px;
    margin-right:10px;
}

.logout{
    background:#e74c3c;
}

