body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    max-width: 900px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form {
    display: grid;
    gap: 15px;
}

label {
    font-weight: bold;
}

input, select {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Adicione esta seção para estilizar a mensagem de sucesso */
.success-message {
    text-align: center;
    margin-top: 20px; /* Ajuste conforme necessário */
}

/* Adicione esta seção para ajustar o redirecionamento em dispositivos móveis */
@media only screen and (max-width: 600px) {
    .success-message {
        font-size: 1.8em;
    }
}
