html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    font-size: 32px;
}

/* estilo do container centralizado */
.container {
    width: 160%;
    max-width: 1600px;
    text-align: center;
    height: 100%;
}

button,
input[type="submit"] {
    font-size: 36px;
    padding: 30px 60px;
    min-width: 300px;
    border-radius: 20px;
    background-color: #03a4c4;
    color: white;
    border: none;
    cursor: pointer;
    margin: 10px;

    /* adições para a animação */
    transition: background-color 0.3s, transform 0.1s ease-in-out; /* + transform */
    transform: translateZ(0); /* cria contexto de composição para animação suave */
    will-change: transform;   /* dica ao browser */
}

button:hover,
input[type="submit"]:hover {
    background-color: #1ed8d3;
}

/* escala para efeito ligeiramente ao carregar */
button:active,
input[type="submit"]:active {
    background-color: #1ed8d3;
    transform: scale(0.97); /* efeito de clicar */
}

/* inputs */
input[type="text"],
input[type="password"],
select {
    font-size: 18px;
    padding: 15px;
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 10px 0;
    background-color: #f9f9f9;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* input focado */
input[type="text"]:focus,
input[type="password"]:focus,
select:focus {
    border-color: #1ed8d3;
    box-shadow: 0 0 10px #1ed8d3;
    outline: none;
}
