#form-cadastro-senha {
    margin: 30px 0;
}

.linha {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.coluna {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 4px;
}

.flex-1 {
    flex: 1;
}

.mb-30{
    margin-bottom: 30px;
}

input[type=text], input[type=datetime-local], input[type=email], input[type=date], input[list], input[type=password], 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: 140px;
    height: 40px;
    border: none;
    background-color: #009468;
    color: white;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
}

.enviar a {
    padding: 10px;
    text-align: center;
    background-color: #009468;
    color: white;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    min-width: 140px;
}