/*
###############################################################################################################################################################
CONTACT FORM SPECIFIC STYLES
###############################################################################################################################################################
*/

/* La plupart des styles sont hérités de xploo_forms_unified.css */

.container {
    height: 100%;
    overflow-y: auto;
}

.heading h1 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
    color: var(--COLOR_SURFACE_80);
}

.heading h1 span {
    color: var(--COLOR_ACTION_50);
}

.heading h1:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-image: linear-gradient(to right, var(--COLOR_ACTION_40), var(--COLOR_ACTION_60));
    border-radius: 2px;
}

.heading h3 {
    color: var(--COLOR_SURFACE_70);
    font-size: 1.1rem;
    margin-bottom: var(--FORM_SECTION_MARGIN_BOTTOM);
    font-weight: 400;
}

.text-center {
    text-align: center !important;
}

.contact-form textarea.form-control {
    padding-left: var(--FORM_INPUT_PADDING) !important;
}

/********************** RESPONSIVE OVERRIDES **********************/

@media screen and (max-width: 480px) {
    .heading h1 {
        font-size: 2rem;
    }
    
    .heading h3 {
        font-size: 0.9rem;
    }
}