#formEmpresas {
    width: 100%;
    background-color: #FCFAF6;
    padding: 40px 0;
}
#formEmpresas .logomarca-empresa {
    display: flex;
    align-items: center;
    gap: 20px;
}
#formEmpresas .logomarca-empresa img {
    border-radius: 20px;
}
#formEmpresas form label {
    font-family: "Inter", sans-serif;
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--cor-preto-90);
}
#formEmpresas form label span.required {
    color: #9853C8;
}
#formEmpresas .form-control {
    height: 50px;
    padding: 15px;
    border-radius: 5px;
    border-color: #181E3F;
}
#formEmpresas form input::placeholder,
#formEmpresas form textarea::placeholder,
#formEmpresas form select {
    font-family: "Inter", sans-serif;
    font-size: 0.938rem;
    font-weight: 400;
    color: #9E9E9E;
}
#formEmpresas form textarea {
    height: unset !important;
}
#formEmpresas form select {
    appearance: none;
    --webkit-appreance: none;
}
#formEmpresas form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.059' height='5.751' viewBox='0 0 10.059 5.751'%3E%3Cpath id='Icon_ionic-ios-arrow-down' data-name='Icon ionic-ios-arrow-down' d='M11.219 15.264l3.8-3.807a.716.716 0 0 1 1.015 0 .725.725 0 0 1 0 1.018l-4.31 4.313a.718.718 0 0 1-.991.021L6.4 12.479a.719.719 0 0 1 1.015-1.018Z' transform='translate(-6.188 -11.246)' fill='%23181e3f'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem top 50%;
    background-size: auto;
}
#formEmpresas .btn-up-logo,
#formEmpresas .btn-enviar-form,
#formEmpresas .btn-reset-form {
    width: fit-content;
    display: block;
    background-color: var(--cor-marrom-claro2);
    color: var(--cor-branco);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    transition: ease-in-out .2s;
    margin-top: 5px;
    border: 0;
    text-transform: uppercase;
}
#formEmpresas .btn-up-logo:hover,
#formEmpresas .btn-enviar-form:hover {
    background-color: #AB6701;
}
#formEmpresas .btn-reset-form {
    background-color: transparent;
    border: solid 1px var(--cor-marrom-claro2);
    color: var(--cor-marrom-claro2);
}
#formEmpresas .btn-reset-form:hover {
    background-color: var(--cor-marrom-claro2);
    color: var(--cor-branco);
}
