/* Reset básico */
*{
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Centralizar formulário */
body{
    background: #f1f5f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Formulário */
form{
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Título */
h3{
    text-align: center;
    margin-bottom: 20px;
}

/* Inputs */
input[type="text"],
input[type="password"]{
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Container do lembrar login */
.lembrar-container {
    display: flex;
    align-items: center;
}

/* Ajuste fino da checkbox */
.lembrar-container input[type="checkbox"] {
    margin-right: 6px;
}

/* Botão */
button{
    width: 100%;
    padding: 10px;
    border: none;
    background: #2563eb;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

button:hover{
    background: #1d4ed8;
}

/* Links discretos */
.link-discreto{
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #2563eb;
    cursor: pointer;
    text-align: center;
}

.link-discreto:hover{
    text-decoration: underline;
}