h2 {
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

h3 {
    margin-bottom: 20px;
}

.linha {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.coluna {
    display: flex;
    flex-direction: column;
}

.mb-20 {
    margin-bottom: 20px;
}

.flex-1 {
    flex: 1;
}

.gap-20 {
    gap: 20px;
}

label {
    margin-bottom: 4px;
}

input[type=text], input[type=datetime-local], input[type=email], input[type=date], input[list], select {
    height: 40px;
    border: 1px solid #dedede;
    padding: 10px;
    border-radius: 5px;
}

textarea {
    resize: none;
    border-radius: 5px;
    border: 1px solid #dedede;
    padding: 10px;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #009468;
    outline: none;
}

.enviar {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
}

.enviar input[type='submit'] {
    max-width: 150px;
    background-color: #009468;
    color: white;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    height: 40px;
    border: none;
}

.enviar a {
    padding: 10px;
    text-align: center;
    background-color: #009468;
    color: white;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    min-width: 140px;
}