#cdf-form {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#cdf-form .control-group input,
#cdf-form .control-group select,
#cdf-form .control-group textarea {
    width: 100%;
    padding: 18px 20px 18px 20px;
    border-radius: 12px;
    color: #575757;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    border: none;
    background: #FFF;
    border: 1px solid #e7e7e7;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    max-height: 108px;
    resize: none;
    outline: none;
}

#cdf-form .control-group.checkbox-group input {
    display: none;
}

#cdf-form .control-group.checkbox-group label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    user-select: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #575757;
    position: relative;
}

#cdf-form .control-group.checkbox-group label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 1px solid #e7e7e7;
    border-radius: 6px;
    background: #fff;
}

#cdf-form .control-group.checkbox-group input:checked + label:after {
    content: "";
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #c25b2f;
    border-radius: 4px;
}

#cdf-form button {
    background: #c25b2f;
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    border-radius: 10px 10px 10px 10px;
    padding: 15px 30px 15px 30px;
    margin: 0px;
    border: none;
    transition: all .4s ease-in;
}

#cdf-form button:hover {
    background: #FFF;
    color: #333;
}

.success {
    color: green;
}

.error {
    color: red;
}