.flex_divi_form_builder{
    width: 100%;
}
.flex-divi-inputs{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.flex_divi_form_input{
    width: 100%;
}
@media (max-width: 980px) {
    .flex-divi-inputs {
        width: 100%;
    }
}
.flex-divi-input-group .flex-divi-form-input-label{
    display: inline-block;
    width: 100%;
}
.flex-divi-input-group input[type=text].flex-divi-input, 
.flex-divi-input-group input[type=email].flex-divi-input, 
.flex-divi-input-group input[type=number].flex-divi-input, 
.flex-divi-input-group select.flex-divi-input,
.flex-divi-input-group input.flex-divi-input,
 .flex-divi-input-group textarea.flex-divi-input {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.flex-divi-form .flex-divi-submit {
    background-color: #04AA6D; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 4px;
  }
  .flex-divi-form .flex-divi-submit:hover{
    cursor: pointer;
  }