.can_vc__container {
    min-height: 60svh;
}

label.gfield_label.gform-field-label {
    display: flex !important;
    justify-content: center;
    margin: 1rem 0;
    font-size: 1.5rem !important;
}

.gform_page_fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.ginput_container_radio .gchoice h6{
    font-size: 1rem;
    margin: 0;
}

/* Page 1 */
#gform_page_2_1 .ginput_container_radio {
    max-width: 800px;
    margin: auto;
} 

#gform_page_2_1 .gfield_radio {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
}

#gform_page_2_1 .gfield_radio .gchoice {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 150px;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    filter: grayscale(1);
}

#gform_page_2_1 .gfield_radio .gchoice:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

#gform_page_2_1 .gfield_radio .gchoice:has(input:checked) {
    filter: grayscale(0);
    border: solid 1px #ccc
}

#gform_page_2_1 .gfield_radio input {
    display: none;
}

#gform_page_2_1 .gfield_radio .gchoice h6 {
    font-size: 1rem;
    margin: 0;
}

#gform_page_2_1 .gfield_radio .gchoice img {
    width: 100%;
    height: auto;
    transition: all ease 500ms;
}

#gform_page_2_1 .gfield_radio .gchoice:hover img,
#gform_page_2_1 .gfield_radio .gchoice:has(input:checked) img {
    transform: scale(1.1);
}

/* Footer */
.gform_page_footer {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.gform_page_footer .button {
    background: var(--can-blue);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: .5rem 1rem;
    border-color: transparent;
    border-radius: 6px;
    transition: all ease 500ms;
}

.gform_page_footer .button:hover {
    background: var(--can-blue-primary);
}

.button.gform_previous_button {
    margin: 0 !important;
}