body {
    font-family: Arial, sans-serif;
    background-color: #f0f2f5; /* Um cinza claro de fundo */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

form {
    background-color: #ffffff;
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}
label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: bold;
    color: #333;
}

input {
    width: 100%;
    padding: 0.8em;
    margin-bottom: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Isso é importante para que o padding não aumente a largura total */
}

button {
    width: 100%;
    padding: 1em;
    border: none;
    border-radius: 4px;
    background-color: #007bff; /* Um azul moderno */
    color: #fff;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3; /* Um azul mais escuro no "hover" */
}