/* Title */
#gform_wrapper_1 .gform_title {
	font-size: 3rem;
	font-weight: 500;
	color: rgb(0 0 0/1);
	line-height: 1;
}

/* Description */
#gform_wrapper_1 .gform_description {
	font-size: 1.25rem;
	line-height: 1.75rem;
    color: #323b4b;
    margin-bottom: 40px;
    display: block;
	font-weight: 500;
}

/* Labels */
#gform_wrapper_1 .gfield_label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Inputs */
#gform_wrapper_1 input[type=text],
#gform_wrapper_1 input[type=email],
#gform_wrapper_1 input[type=tel],
#gform_wrapper_1 input[type=number],
#gform_wrapper_1 select,
#gform_wrapper_1 textarea {
    height: 43px;
    border: none;
    background: #ececec;
    border-radius: 18px;
    padding: 0 14px;
    font-size: 16px;
    box-shadow: none;
}

/* Placeholder */
#gform_wrapper_1 input::placeholder,
#gform_wrapper_1 textarea::placeholder {
    color: #9b9b9b;
}

/* Select */
#gform_wrapper_1 select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23666' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
}

/* Checkbox */
#gform_wrapper_1 input[type=checkbox] {
    width: 18px;
    height: 18px;
}

/* Consent */
#gform_wrapper_1 .gfield_consent_label {
    font-size: 16px;
    font-weight: 400;
}

/* Submit Button */
#gform_wrapper_1 .gform_button {
    background: #556c2d;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 600;
    transition: .3s;
}

#gform_wrapper_1 .gform_button:hover {
    background: #33411b;
}

/* Required star */
#gform_wrapper_1 .gfield_required {
    color: #d63637;
}

/* Remove validation styles */
#gform_wrapper_1 .validation_message {
    margin-top: 8px;
}