/*==================================================
VMW MOTO-REBOQUES
ADMIN.CSS
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;

    background:#f5f7fb;

}

.login{

    width:100vw;
    height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

}

.login-box{

    width:420px;

    background:#fff;

    padding:40px;

    border-radius:18px;

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

    text-align:center;

}

.logo{

    width:240px;

    margin:auto;

    margin-bottom:20px;

}

.login h2{

    font-size:30px;

    margin-bottom:5px;

}

.login p{

    color:#666;

    margin-bottom:25px;

}

.login input{

    width:100%;

    height:55px;

    border:1px solid #ddd;

    border-radius:10px;

    padding:15px;

    font-size:17px;

    margin-bottom:20px;

}

.login button{

    width:100%;

    height:55px;

    background:#d60000;

    color:#fff;

    border:none;

    border-radius:10px;

    cursor:pointer;

    font-size:18px;

    font-weight:600;

}

#erro{

    display:none;

    color:red;

    margin-top:20px;

}

.painel{

    display:none;

    max-width:1200px;

    margin:40px auto;

    padding:20px;

}

header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

}

header h1{

    font-size:34px;

}

header button{

    background:#d60000;

    color:#fff;

    border:none;

    padding:14px 30px;

    border-radius:8px;

    cursor:pointer;

}

.card{

    background:#fff;

    padding:30px;

    border-radius:15px;

    margin-bottom:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.card h2{

    margin-bottom:25px;

}

.card label{

    display:block;

    margin-top:18px;

    margin-bottom:8px;

    font-weight:600;

}

.card input{

    width:100%;

    height:50px;

    border:1px solid #ddd;

    border-radius:8px;

    padding:12px;

    font-size:16px;

}

.card button{

    margin-top:25px;

    background:#1ecb5a;

    color:#fff;

    border:none;

    padding:15px 30px;

    border-radius:8px;

    cursor:pointer;

}

.online{

    color:#1ecb5a;

    font-weight:bold;

}