/* Estilos para o layout de duas colunas */
.calculadora-btus-form {
    display: flex;
    flex-wrap: wrap;
}

.form-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
	vertical-align: bottom;
}

.form-row2 {
    display: flex;
    justify-content: center; /* Centraliza o botão na horizontal */
    width: 100%; /* Garante que a div ocupe toda a largura do formulário */
    margin-top: 15px; /* Espaço acima do botão */
}

.form-row2 input[type="submit"] {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #EB0A0A;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
}

.form-row2 input[type="submit"]:hover {
    background-color: #EB0A0A;
}


.form-column {
    width: 48%; /* Define a largura de cada coluna */
    margin-bottom: 5px;
	vertical-align: bottom;
}

.form-column label {
    display: block;
    margin-bottom: 2px;
    font-weight: 300;
	font-size: 12px;
    font-family: 'Poppins';
    font-style: normal;
    color: #ffffff;
}

.form-column input,
.form-column select {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

#resultado-btus {
    margin-top: 20px;
}

#calcular-novamente {
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
}

#calcular-novamente:hover {
    background-color: #005a87;
}

#h2, h2 a, h2 a:hover {
    color: #ffffff !important;
}
