*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Segoe UI, sans-serif;
}

body{
    background:#f5f7fb;
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
}

.login-container{

    background:white;

    width:450px;

    padding:40px;

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);

}

h1{
    text-align:center;
    color:#0f4c81;
    margin-bottom:10px;
}

.subtitulo{
    text-align:center;
    color:#666;
    margin-bottom:30px;
    font-size:14px;
}

label{
    display:block;
    margin-bottom:5px;
    color:#444;
    font-weight:600;
}

input{

    width:100%;

    padding:12px;

    margin-bottom:20px;

    border:1px solid #dcdcdc;

    border-radius:10px;

    font-size:14px;
}

input:focus{

    outline:none;

    border-color:#0f4c81;
}

button{

    width:100%;

    padding:14px;

    background:#0f4c81;

    color:white;

    border:none;

    border-radius:10px;

    cursor:pointer;

    font-size:16px;

    font-weight:bold;

    transition:0.3s;
}

button:hover{

    background:#0c3d66;
}

.layout{
    display:flex;
    height:100vh;
}

.sidebar{

    width:250px;

    background:#0f4c81;

    color:white;

    display:flex;

    flex-direction:column;

    justify-content:space-between;
}

.logo{

    text-align:center;

    padding:30px 0;

    border-bottom:1px solid rgba(255,255,255,0.2);
}

.sidebar nav{

    display:flex;

    flex-direction:column;
}

.sidebar nav a{

    color:white;

    text-decoration:none;

    padding:15px 25px;

    transition:0.3s;
}

.sidebar nav a:hover{

    background:rgba(255,255,255,0.15);
}

.sair{

    padding:20px;
}

.sair a{

    color:white;

    text-decoration:none;
}

.conteudo{

    flex:1;

    padding:40px;
}

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));

    gap:20px;

    margin-top:30px;
}

.card{

    background:white;

    border-radius:15px;

    padding:25px;

    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.card h3{

    color:#555;

    margin-bottom:10px;
}

.card p{

    font-size:32px;

    font-weight:bold;

    color:#0f4c81;
}