/* Resetando estilos padrão */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Estilo do corpo */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
    padding: 20px;
}

/* Container principal */
.container {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
}

/* Título */
h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Formulário */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Organizando campos em duas colunas */
.two-columns {
    display: flex;
    gap: 15px;
}

.input-box {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Labels */
label {
    font-weight: bold;
    margin-bottom: 5px;
}

/* Inputs e selects */
input, select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
}

/* Botão */
.button-container {
    display: flex;
    justify-content: center;
}

button {
    width: 50%;
    padding: 12px;
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    border-radius: 4px;
}

button:hover {
    background-color: #218838;
}

/* Responsividade */
@media (max-width: 768px) {
    .two-columns {
        flex-direction: column;
    }

    button {
        width: 100%;
    }
}
