body{
    margin:0;
    padding:0;
    font-family:Arial,sans-serif;
}

.sp-editable{
    outline:2px dashed #0ea5e9;
    padding:4px;
}


/*
=====================================
LOGIN
=====================================
*/

.sp-login-wrap{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#071c3b;
}

.sp-login-box{
    width:100%;
    max-width:400px;
    background:#fff;
    padding:40px;
    border-radius:20px;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.sp-login-box input{
    height:50px;
    border:1px solid #ddd;
    border-radius:10px;
    padding:0 15px;
}

.sp-login-box button{
    height:50px;
    border:none;
    border-radius:10px;
    background:#0ea5e9;
    color:#fff;
    font-size:16px;
    cursor:pointer;
}


/*
=====================================
DASHBOARD
=====================================
*/

.sp-dashboard{
    padding:50px;
}

.sp-dashboard-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.sp-dashboard-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.sp-dashboard-card{
    background:#071c3b;
    color:#fff;
    text-decoration:none;
    padding:40px;
    border-radius:20px;
}




/*
=====================================
LOGOUT
=====================================
*/

.sp-logout-wrap{
    margin-top:40px;
    text-align:center;
}

.sp-logout-btn{
    display:inline-block;
    background:#ef4444;
    color:#fff;
    padding:12px 18px;
    border-radius:12px;
    text-decoration:none;
    font-size:14px;
}