*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{

background:#f6f8f3;

display:flex;

justify-content:center;

align-items:center;

height:100vh;

}

.login-box{

width:420px;

background:#fff;

padding:40px;

border-radius:25px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.login-box h1{

text-align:center;

color:#D95A1A;

margin-bottom:10px;

}

.login-box p{

text-align:center;

margin-bottom:30px;

color:#777;

}

input{

width:100%;

height:55px;

border:1px solid #ddd;

border-radius:15px;

padding-left:18px;

margin-bottom:18px;

font-size:15px;

outline:none;

transition:.3s;

}

input:focus{

border-color:#D95A1A;

}

button{

width:100%;

height:55px;

border:none;

background:#D95A1A;

color:#fff;

font-size:17px;

font-weight:600;

border-radius:15px;

cursor:pointer;

transition:.3s;

}

button:hover{

background:#bf4d14;

}

.bottom{

margin-top:20px;

text-align:center;

}

.bottom a{

text-decoration:none;

color:#D95A1A;

font-weight:600;

}

.error{

background:#ffe5e5;

padding:12px;

border-radius:10px;

margin-bottom:20px;

color:red;

text-align:center;

}

.success{
background:#dcffe6;
color:#0a7a33;
padding:14px;
margin-bottom:20px;
border-radius:10px;
text-align:center;
font-size:14px;
}

input[type=text],
input[type=email],
input[type=password]{
margin-bottom:18px;
}

button:active{
transform:scale(.98);
}

.content{
margin-left:260px;
padding:30px;
background:#f5f7fb;
min-height:100vh;
}

.dashboard-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-bottom:30px;
}

.card{
background:#fff;
padding:20px;
border-radius:12px;
box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.card h4{
margin:0;
color:#666;
font-size:16px;
}

.card h2{
margin-top:10px;
font-size:30px;
color:#E65A10;
}

.table{
width:100%;
border-collapse:collapse;
background:#fff;
border-radius:10px;
overflow:hidden;
}

.table th{
background:#E65A10;
color:#fff;
padding:12px;
text-align:left;
}

.table td{
padding:12px;
border-bottom:1px solid #eee;
}