.form-body {
    background-color: #eeeeee;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 50px 20px;
    min-height: 100vh;
}

.form-wrapper {
    max-width: 1620px;
    margin: 0 auto;
}

.form-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.form-header-top h1 {
    font-size: 35px;
    font-weight: 500;
    color: #3A656E;
    margin-bottom: 6px;
}

.form-header-top p {
    font-size: 15px;
    color: #161616;
    margin: 0;
    max-width: 980px;
}

.form-logo img {
    height: 80px;
}

.form-block {
    background-color: #eeeeee;
    border-radius: 16px;
    padding: 26px 30px;
    margin-bottom: 20px;
    border: 1px solid #3C3C3C;
}

.form-block h2 {
    font-size: 20px;
    font-weight: 500;
    color: #3A656E;
    margin-bottom: 18px;
}

.form-subtext {
    font-size: 15px;
    color: #161616;
    margin-bottom: 16px;
    font-weight: 400;
}

.form-row {
    display: grid;
    gap: 20px;
}

.form-row-3 {
    grid-template-columns: repeat(3, 1fr);
}

.form-row-2 {
    grid-template-columns: 1fr 1fr;
}

.form-field label {
    display: block;
    font-size: 15px;
    color: #161616;
    margin-bottom: 8px;
    font-weight: 400;
}

.form-field .opcional {
    color: #9aa5a9;
    font-weight: 400;
}

.form-input {
    width: 100%;
    background-color: #eeeeee;
    border: 1px solid #3C3C3C;
    border-radius: 8px;
    padding: 13px 14px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    color: #303030;
}

.form-input::placeholder {
    color: #a7b0b3;
}

.form-input:focus {
    outline: none;
    border-color: #3A656E;
}

.custom-dropdown {
    position: relative;
}

.dropdown-toggle {
    width: 100%;
    background-color: #eeeeee;
    border: 1px solid #3C3C3C;
    border-radius: 8px;
    padding: 13px 14px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    color: #a7b0b3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}

.dropdown-toggle.has-value {
    color: #283940;
}

.dropdown-toggle svg {
    flex-shrink: 0;
    transition: transform 0.2s;
    color: #6b7a80;
}

.custom-dropdown.open .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-panel {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #d8dee0;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 8px;
    z-index: 20;
    max-height: 220px;
    overflow-y: auto;
}

.custom-dropdown.open .dropdown-panel {
    display: block;
}

.dropdown-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    font-size: 13px;
    color: #283940;
    cursor: pointer;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
}

.dropdown-option:hover {
    background-color: #f4f4f4;
}

.dropdown-option input[type="checkbox"],
.dropdown-option input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: #283940;
    cursor: pointer;
    flex-shrink: 0;
}

/* DROPZONE */
.form-dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px dashed #c7ced0;
    border-radius: 12px;
    padding: 40px 20px;
    cursor: pointer;
    color: #6b7a80;
    transition: 0.25s;
    text-align: center;
    background-color: #fff;
}

.form-dropzone:hover,
.form-dropzone.dropzone-active {
    border-color: #3A656E;
    background-color: #eef3f3;
}

.dropzone-title {
    font-size: 15px;
    font-weight: 500;
    color: #262626;
}

.dropzone-formats {
    font-size: 15px;
    color: #A7A7A7;
    font-weight: 400;
}

.dropzone-filename {
    font-size: 12px;
    color: #3A656E;
    font-weight: 500;
    word-break: break-all;
}

.form-textarea {
    width: 100%;
    min-height: 240px;
    background-color: #eeeeee;
    border: 1px solid #3C3C3C;
    border-radius: 8px;
    padding: 14px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #283940;
    resize: none;
}

.form-textarea::placeholder {
    color: #a7b0b3;
}

.form-textarea:focus {
    outline: none;
    border-color: #3A656E;
}

.form-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 10px;
}

.btn-form-outline,
.btn-form-primary {
    padding: 20px 53px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    width: 326px;
    height: 70px;
}

.btn-form-outline {
    background-color: #eeeeee;
    color: #283940;
    border: 1px solid #283940;
}

.btn-form-outline:hover {
    background-color: #f4f4f4;
    color: #283940;
}

.btn-form-primary {
    background-color: #283940;
    color: #fff;
}

.btn-form-primary:hover {
    background-color: #3A656E;
    color: #fff;
}

.dropzone-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin-bottom: 4px;
}

.dropdown-toggle::after {
    display: none !important;
    content: none !important;
}

label {
    color: #000;
}

.privacy-checkbox-label a {
    color: #000 !important;
    text-decoration: underline !important;
    font-weight: 400;
}

.privacy-checkbox-label a:hover,
.privacy-checkbox-label a:focus,
.privacy-checkbox-label a:active,
.privacy-checkbox-label a:visited {
    color: #000 !important;
    text-decoration: underline !important;
}


.obrigatorio {
    color: #dc3545;
    font-weight: bold;
    margin-left: 2px;
}
.dropdown-toggle.field-error {
    border: 1px solid #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

@media (max-width: 900px) {

    .form-row-3,
    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .form-header-top {
        flex-direction: column;
    }

    .form-body {
        padding: 25px 15px;
    }

    .form-buttons {
        flex-direction: column-reverse;
    }

    .btn-form-outline,
    .btn-form-primary {
        width: 100%;
        text-align: center;
    }
}