.slp-login-container{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:calc(100vh - 120px);
    width:100%;
}

.slp-login-box{

    width:420px;
    max-width:95%;

    background:#fff;

    border-radius:15px;

    padding:40px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.slp-logo{

    display:block;

    margin:0 auto 20px;

    max-width:260px;

}

.slp-login-box h2{

    text-align:center;

}

.slp-login-box p{

    text-align:center;

    margin-bottom:30px;

}

.slp-field{

    margin-bottom:20px;

}

.slp-field label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

}

.slp-field input{

    width:100%;

    padding:14px;

    border:1px solid #ddd;

    border-radius:8px;

    box-sizing:border-box;

}

.slp-login-box button{

    width:100%;

    padding:15px;

    background:#1E73BE;

    color:#fff;

    border:0;

    border-radius:8px;

    cursor:pointer;

}

.slp-login-error{
    background:#ffeaea;
    color:#b42318;
    border:1px solid #f5c2c7;
    padding:12px;
    border-radius:8px;
    margin-bottom:20px;
}

.slp-login-error{
    background:#fdecec;
    border:1px solid #f5b5b5;
    color:#b42318;
    padding:12px;
    border-radius:8px;
    margin-bottom:20px;
}

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

.slp-dashboard{
    display:flex;
    min-height:100vh;
    background:#f4f7fb;
}

.slp-sidebar{
    width:260px;
    background:#16213e;
    color:#fff;
    display:flex;
    flex-direction:column;
}

.slp-sidebar .slp-logo{
    padding:30px;
    text-align:center;
}

.slp-sidebar .slp-logo img{
    width:180px;
}

.slp-sidebar nav{
    display:flex;
    flex-direction:column;
    margin-top:20px;
}

.slp-sidebar nav a{
    color:#fff;
    text-decoration:none;
    padding:16px 30px;
    transition:.3s;
    font-size:15px;
}

.slp-sidebar nav a:hover,
.slp-sidebar nav a.active{
    background:#2b7bc2;
}

.slp-main{
    flex:1;
    display:flex;
    flex-direction:column;
}

.slp-header{
    height:80px;
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 40px;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.slp-content{
    padding:40px;
}

.slp-content h3{
    margin-bottom:15px;
    font-size:30px;
}

.slp-user{
    font-size:15px;
}