.elementor-11153 .elementor-element.elementor-element-ed093c4{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-84aba9b */#edit-profile-form {
    display: flex;
    flex-wrap: wrap;

    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
}

#edit-profile-form div {
    display: flex;
    flex: 1 1 1 48%; /* Cada div vai ocupar 48% da largura */
    flex-wrap: wrap; /* Garantir que os campos dentro da div possam se organizar em várias linhas, se necessário */
    gap: 10px;
}

#edit-profile-form label {
    font-weight: bold;
    margin-bottom: 1px;
    display: block;
    font-family: poppins;
    font-size: 13px
}

#edit-profile-form input {
    width: 100%;

    margin-bottom: 16px;
    border-radius: 4px;
    box-sizing: border-box;
}

#edit-profile-form button {
    background-color: #582d87;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

#edit-profile-form button:hover {
    background-color: #45a049;
}

@media (max-width: 600px) {
    #edit-profile-form div {
        flex: 1 1 100%; /* Para telas menores, cada div vai ocupar toda a largura */
    }

    #edit-profile-form button {
        width: auto;
        margin-top: 20px;
    }
}

    #edit-profile-form {
        display: flex;
        flex-direction: column;

        margin: auto;
    }
    .form-row {
        display: flex;
        gap: 10px;
        margin-bottom: 10px;
    }
    .form-group {
        display: flex;
        flex-direction: column;
        flex: 2;
    }
    .hidden {
        display: none;
    }

    .document-section {
        background: #5a3d80;
        color: white;
        padding: 30px;
        border-radius: 8px;
        margin-bottom: 20px;
        font-family: poppins;
        font-size: 13px
    }
        
        
    .upload-group {
        display: flex;
        flex-direction: column;
        margin-bottom: 15px;
    }
    .upload-group input {
        margin-top: 5px;
    }/* End custom CSS */