/* Estilo automático para a página: ouvidoria */
main {
    margin-top: 190px;
}

section.content {
    h2 {
        padding-left: 15px;
        border-left: 5px solid #E54344;
        font-size: 32px;
        color: #5A5A5A;
        font-weight: 400;
    }

    h4 {
        font-weight: 600;
        font-size: 16px;
        line-height: 160%;
        color: #5A5A5A;
    }

    p {
        font-weight: 400;
        font-size: 16px;
        line-height: 160%;
        color: #5A5A5A;
    }
}

.form-container {
    padding: 36px 40px;
    border: 1px solid #E3E3E3;
    box-shadow: 5px 5px 8px 0px #2C2C2C26;
    border-radius: 10px;
    margin-top: 40px;

    span {
        margin-bottom: 30px;
        color: #E54344;
        font-size: 16px;
        font-weight: 400;
    }

    form {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}


.form-group {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;

    input,
    select {
        flex: 1;
        height: 60px;
        border: 1px solid #DADADA;
        border-radius: 10px;
        padding: 0px 22px;
        color: #5A5A5A;
        background-color: #F8F8F8;

        &:focus {
            border: 1px solid #545454;
            outline: none;
        }

        &[type=checkbox] {
            flex: auto;
        }

        option {
            color: #545454;
        }
    }

    textarea {
        flex: 1;
        width: 100%;
        border: 1px solid #DADADA;
        border-radius: 10px;
        padding: 0px 22px;
        color: #5A5A5A;
        background-color: #F8F8F8;

        &:focus {
            border: 1px solid #545454;
            outline: none;
        }
    }
}

.form-local {
    display: flex;
    flex-direction: row;
    gap: 60px;
    justify-content: space-between;

    button {
        border-radius: 10px;
        border: none;
        color: #fff;
        background-color: #E54344;
        width: fit-content;
        outline: none;
        padding: 12px 36px;
    }
}