.formPopupContainer{
    width: calc(100% - 90px);
    margin: auto;
}

#form{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    background-color: var(--dark-blue);
    margin: auto;
    padding: 40px 20px;
}

.formPopupContainer{
   width: calc(90% - 10px);
    max-width: 650px;
    max-height: 80vh;
    overflow-y: auto;
}

.formControl.title{
    color: white;
    text-align: center;
    font-weight: 500;
    margin-bottom: 20px;
}

.formControl{
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: calc(50% - 15px);
}

.formControl.fullWidth{
    width: 100%;
}

.formControl label{
    color: white;
}


.formControl input,
.formControl textarea{
    background: white;
    border: none;
    min-height: 42px;
    border-radius: 4px;
    padding: 0px 20px;
    border: solid white 1px;

}

.formControl input:focus,
.formControl textarea:focus{
    border: solid var(--dark-blue) 1px;
    outline: none;
}

.formControl textarea{
    height: 100px;
    padding: 10px 20px;
    resize: none;
}

.captcha{
    width: 100%;
  
}

.captcha div{
    width: 100%;
    max-width: 550px;
      padding: 16px;
    border: solid white 1px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 16px 8px;
    align-items: center;
    margin: auto;
}

.captcha p{
    width: 100%;
}

.captcha p.error{
    color: red;
}

.fieldError{
    color: red;
    font-size: 13px;
    margin: 0;
}

.formStatus{
    width: 100%;
    text-align: center;
    font-weight: 500;
    margin: 0;
}

.formStatus.success{
    color: #4cd964;
}

.formStatus.error{
    color: red;
}

.captcha input {
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    color: #000;
    appearance: textfield;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

.formPopupContainer #form button{
    background-color: var(--light-blue);
}

.captcha{
    color: white;
}

.captcha input:read-only{
color: white;
}

.captcha input::-webkit-outer-spin-button,
.captcha input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.popupClosebtn{
    background-color: white;
}

/* responsive  */  

/* tablet  */

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

/* mobile  */

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


.formControl.title{
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 26px;
}

.formControl{
    width: 100%;
}

    .popupClosebtn img{
        filter: none;
    }
}