body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    /* CORREÇÃO AQUI: Troquei height por min-height para permitir rolagem */
    min-height: 100vh; 
    margin: 0;
    /* Adiciona espaço para a caixa não encostar nas bordas quando crescer */
    padding: 20px 0; 
    box-sizing: border-box;
}
.container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    width: 90%;
    max-width: 400px;
    /* Garante que o conteúdo que vazar não estrague o layout */
    box-sizing: border-box; 
}
input {
    width: 100%;
    padding: 12px;
    margin: 15px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 18px;
    text-transform: uppercase;
    box-sizing: border-box;
    text-align: center;
}
button {
    width: 100%;
    padding: 14px;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}
button:hover {
    background-color: #004494;
}