*::placeholder {
    color: #566D82;
    opacity: 1;
}
input{
    line-height: 60px;
    width: 355px;
    border: 1.62px solid #EBF1F7;
    border-radius: 28.35px;
    background-color: #FFFFFF;
    box-shadow: 0 1px 12px 3px rgba(209,221,229,0.4);
    color: #000C3D;
    font-size: 17px;
    margin: 0 0 17px;
    padding: 0 20px;
    max-width: 355px;
}
input.error{
    border: 1.62px solid #FF7570;
}
input[type='submit'] {
    width: auto;
    padding: 0 40px;
    font-size: 17px !important;
    cursor: pointer;
}
input[type='submit']:hover{
    opacity:0.8;
}
input[type='submit'].loading {
    pointer-events: none;
    opacity: 0.7;
    content:"Processing.."
}

input[type='submit']::after{
    content:"!";
}

input[type='checkbox'] {
    transform: scale(1.8);
    box-shadow:none;
    margin: 0 !IMPORTANT;
    width: 15px !important;
}
label{
    font-size: 19px;
    letter-spacing: 0;
    line-height: 21px;
    margin: 0 0 7px 7px;
    display: block;
    font-weight: 500;
}
.formmessage {
    color: #FF7570;
    font-size: 19px;
    margin: 0 0 15px;
    display: none;
}
.formmessage.success {
    color: #00b700;
}
.formitem{

}
.formitem-double{
    display: flex;
    gap: 20px;
    width: 329px;
}
.formitem-double .formitem{
    width:50%;
}
.formitem-double .formitem input{
    width: 172px;
}
.formitem-options {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 17px;
}
.formitem-option{
    line-height: 60px;
    border: 1.62px solid #EBF1F7;
    border-radius: 28.35px;
    background-color: #FFFFFF;
    box-shadow: 0 1px 12px 3px rgba(209,221,229,0.4);
    color: #000C3D;
    font-size: 19px;
    
    padding: 0 26px;
    cursor: pointer;
}
.formitem-option.active{
    background-color: #000C3D;
    color:#fff;
}

.select-wrap{
    position: relative;
}

select {
    line-height: 60px;
    border: 1.62px solid #EBF1F7;
    border-radius: 28.35px;
    background-color: #FFFFFF;
    box-shadow: 0 1px 12px 3px rgba(209,221,229,0.4);
    color: #000C3D;
    font-size: 17px;
    margin: 0 0 17px;
    padding: 0 20px;
    text-align: center;
    height: 60px;
    appearance: none;
    max-width: 355px;
    text-align: left;
    width: 355px;
    box-sizing: content-box;
}
.select-wrap::after{
    position: absolute;
    content:" ";
    background: url(../png/icon-down.png) center center / 100% 100% no-repeat;
    width: 16px;
    height: 10px;
    display: inline-block;
    right: 21px;
    top: 27px;
}
select option{
    line-height: 50px;
    height: 50px;
    padding: 0 24px;
    margin: 0 10px;
}

@media screen and (max-width: 767px) {

    input{
        line-height: 50px;
        width: 100%;
        padding: 0 15px;
    }
    select {
        line-height: 50px;
        height: 50px;
        width: 100%;
        padding: 0 15px;
    }
    .select-wrap:after {
        top: 22px;
    }

    .formitem-double {
        gap: 0;
        max-width: 355px;
        flex-wrap: wrap;
        width: 100%;
    }
    .formitem-double .formitem{
        width:100%;
    }
    .formitem-double .formitem input {
        width: 100%;
    }

    .formitem-option{
        line-height: 50px;
        padding: 0 20px;
    }
    

}