/* Form Desktop */

.form-wrapper {
    width: 46rem;
    margin: auto;
    margin-top: 2rem;
    z-index: 1;
    position: relative;
}

.form-wrapper fieldset {
    width: auto;
    display: flex;
    flex-direction: row;
    height: auto;
}

.form-wrapper fieldset label {
    display: none;
}
#form-title{
    display: none
}
.form-wrapper legend {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}
.form-wrapper .form-group{
    width:49%;
    margin-bottom:0.5rem
}
.form-wrapper .form-group:nth-child(3),
.form-wrapper .form-group:nth-child(4) {
    margin-bottom: 0;
}
.form-wrapper .ac-impts-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.form-wrapper .btn-send {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6rem;
    margin-right: 1rem;
}

.form-wrapper .btn-send button {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 0rem 0rem 0rem;
    padding: 0.3rem;
    background: #009C94;
    border: 0;
    text-align: center;
    width: 100%;
    font-weight: 900;
    font-family: "Spoiler-Black";
    display: flex;
    justify-content: center;
    align-items: stretch;
    border-radius: 0.3rem;
    padding: 1.3rem 0;
}
.form-wrapper .btn-send button:hover,
.form-wrapper .btn-send button:focus {
    background-color: #fff;
    color: #232635;
}

.form-wrapper input {
    color: #6D6A6A;
    font-size: 1.1rem;
    margin: 0;
    padding: 0.3rem;
    background: #ffffffb3;
    border: 0;
    text-align: center;
    font-family: "FbSpoiler-Regular";
    width: 100%;
    border-radius: 0.3rem;
}
/* .form-wrapper .ac-checkbox{
    display: flex;
    color: #fff;
} */
/* .form-wrapper fieldset label[for="ac-marketing-consent"]{
    display: flex;
    line-height: 0.8;
    margin-right: 0.5rem;
}
.form-wrapper input[type="checkbox"]{
    width: 2rem;
    margin-right: 2rem;
} */

input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #6D6A6A;
    font-size: 1.1rem;
    text-indent: 0.1rem;
    transition: text-indent 0.5s;
}

input::-moz-placeholder {
    /* Firefox 19+ */
    color: #6D6A6A;
    font-size: 1.1rem;
    text-indent: 0.1rem;
    transition: text-indent 0.5s;
}

input:-ms-input-placeholder {
    /* IE 10+ */
    color: #6D6A6A;
    font-size: 1.1rem;
    text-indent: 0.1rem;
    transition: text-indent 0.5s;
}

input:-moz-placeholder {
    /* Firefox 18- */
    color: #6D6A6A;
    font-size: 1.1rem;
    text-indent: 0.1rem;
    transition: text-indent 0.5s;
}

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:1023px) {
    .form-wrapper {
        width: 100vw;
    }
    .form-wrapper fieldset {
        flex-direction: column;
    }
    .form-wrapper .ac-impts-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin: 0 auto;
    }
    .form-wrapper .form-group {
        width: 76%;
        margin-top: 0.5rem;
    }
    .form-wrapper .btn-send {
        width: 100%;
        margin-top: 0.5rem;
        margin-right: unset;
    }
    .form-wrapper .btn-send button {
        background: #009C94;
        color: #fff;
        width: 41%;
        border-radius: 0.5rem;
        font-size: 1.9rem;
        padding: 0.5rem 0;
    }
    .form-wrapper .ac-checkbox {
        width: 92%;
        margin: auto;
        margin-bottom: 3vw;
    }
    .form-wrapper input[type="checkbox"] {
        width: 2rem;
        margin-right: 0rem;
    }
    .form-wrapper fieldset label[for="ac-marketing-consent"] {
        margin-right: 0.5rem;
        font-size: 0.8rem;
    }
    .form-wrapper input {
        color: #000;
        font-size: 1.5rem;
        border-radius: 0.5rem;
        height: 11vw;
    }
    input::-webkit-input-placeholder {
        color: #000;
        font-size: 1.5rem;
    }
    
    input::-moz-placeholder {
        color: #000;
        font-size: 1.5rem;
    }
    
    input:-ms-input-placeholder {
        color: #000;
        font-size: 1.5rem;
    }
    
    input:-moz-placeholder {
        color: #000;
        font-size: 1.5rem;
    }
    .form-wrapper .form-group {
        margin-bottom: 0;
    }
}