/* Form Desktop */

.form-wrapper {
    background-color: #2584C4;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
    width: 80%;
    margin: auto;
    border-radius: 0.7rem;
}

.form-wrapper fieldset {
    width: auto;
    display: flex;
    flex-direction: column;
    height: auto;
}
.form-wrapper .checkbox-container {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 1rem auto;
    text-align: right;
}

.form-wrapper .checkbox-label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.form-wrapper .checkbox-label input[type="checkbox"] {
    margin-left: 0%;
    width: 1rem;
    height: 1rem;
}

.form-wrapper .checkbox-label span {
    font-size: 0.8rem;
    display: inline-block;
    margin-right: 0.5rem;
}
.form-wrapper .checkbox-label span.ac-en-font-light{
    margin-right: 0rem;
}
.form-wrapper fieldset label {
    display: none;
}

.form-wrapper legend {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.2;
}
.form-wrapper legend .ac-bigger{
font-size: 130%;
}
.form-wrapper .ac-impts-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 85%;
    margin: 0 auto;
}
.form-wrapper .form-group{
    box-sizing: border-box;
    width: 90%;
    margin: auto;
}
.form-wrapper .btn-send {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 13rem;
    margin: auto;
}

.form-wrapper .btn-send button {
    background-color: #E2235A;
    border: 0.1rem solid #E2235A;
    color: #fff;
    padding: 0.2rem 1.5rem;
    transition: color 0.5s, background-color 0.5s;
    font-family: 'Fb Constructor';
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1.2rem;
    width: 80%;
    height: 2rem;
}
.form-wrapper .btn-send button .ac-icon-arrows{
    
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1rem;
    height: 0.7rem;

}
.form-wrapper .btn-send button .ac-text{
    display: inline-block;
    position: relative;
    top: 0.1rem;
    margin-left: 0.5rem;
}
.form-wrapper .btn-send button:hover,
.form-wrapper .btn-send button:focus {
    background-color: #fff;
    color: #E2235A;
}
.form-wrapper .btn-send button:hover svg path,
.form-wrapper .btn-send button:focus svg path{
    fill:#E2235A !important;
}
.form-wrapper input {
    color: #000;
    font-size: 1.1rem;
    margin: 0 0rem 0.5rem 0rem;
    padding: 0.3rem;
    font-family: 'Fb Constructor';
    font-weight: 400;
    border-radius: 0.5rem;
    border: 0;
    width: 100%;
    text-align: center;
    height: 2rem;
}

input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #000;
    font-size: 1.1rem;
    text-indent: 0.1rem;
    transition: text-indent 0.5s;
    font-family: 'Fb Constructor';
    font-weight: 400;
}

input::-moz-placeholder {
    /* Firefox 19+ */
    color: #000;
    font-size: 1.1rem;
    text-indent: 0.1rem;
    transition: text-indent 0.5s;
    font-family: 'Fb Constructor';
    font-weight: 400;
}

input:-ms-input-placeholder {
    /* IE 10+ */
    color: #000;
    font-size: 1.1rem;
    text-indent: 0.1rem;
    transition: text-indent 0.5s;
    font-family: 'Fb Constructor';
    font-weight: 400;
}

input:-moz-placeholder {
    /* Firefox 18- */
    color: #000;
    font-size: 1.1rem;
    text-indent: 0.1rem;
    transition: text-indent 0.5s;
    font-family: 'Fb Constructor';
    font-weight: 400;
}

input:hover::-webkit-input-placeholder,
input:focus::-webkit-input-placeholder {
    text-indent: 1rem;
}

input:hover:-moz-placeholder,
input:focus:-moz-placeholder {
    /* Firefox 18- */
    text-indent: 1rem;
}

input:hover::-moz-placeholder,
input:focus::-moz-placeholder {
    /* Firefox 19+ */
    text-indent: 1rem;
}

input:hover:-ms-input-placeholder,
input:focus:-ms-input-placeholder {
    text-indent: 1rem;
}


/* End Form Desktop */

@media(max-width:650px){
    .form-wrapper {
        width: 90%;
    }
    .form-wrapper legend {
        font-size: 2rem;
        line-height: 1.2;
    }
    .form-wrapper input {
        font-size: 1.5rem;
        margin: 0 0rem 1rem 0rem;
        padding: 0.8rem 0.5rem 0.5rem;
        height: 4rem;
    }
    input::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */
        font-size: 1.5rem;
    }
    
    input::-moz-placeholder {
        /* Firefox 19+ */
        font-size: 1.5rem;
    }
    
    input:-ms-input-placeholder {
        /* IE 10+ */
        font-size: 1.5rem;
    }
    
    input:-moz-placeholder {
        /* Firefox 18- */
        font-size: 1.5rem;
    }
    .form-wrapper .checkbox-label input[type="checkbox"] {
        margin-left: 0%;
        width: 2rem;
        height: 2rem;
    }
    .form-wrapper .checkbox-label span {
        font-size: 1.2rem;
        display: inline-block;
        margin-right: 0.5rem;
    }
    .form-wrapper .btn-send {
        width: 16rem;
    }
    .form-wrapper .btn-send button {
        border-radius: 3.2rem;
        width: 100%;
        height: 3rem;
        font-size: 1.5rem;
    }
}