input, textarea{
    font-size: 16px;
}
.form >div{
    margin-bottom: 19.2px;
}
 .form label{
    color: #111827;
    font-size: 14px;
    font-family: 'SemiBold';
    line-height: 20px;
}
 .form input,.form textarea{
    height: 40px;
    padding:12px 16px;
    background: transparent;
}
 .form textarea{
    height: 150px;
}
 .form input[type="submit"]{
    width: auto;
    color: #ffffff;
    background-color: #CC8100;
    font-size: 16px;
    padding: 0 20px!important;
    border-radius: 3px;
    transition: all .5s ease-out;
    border: none;
}
.form input[type="submit"]:hover{
    background-color: #da7d13;
    color: #000000;
}

.form input:focus,.form textarea:focus{
    border-style: dotted;
    border-color: #046BD2;
    border-width: thin;
    box-shadow: none;
    outline: none;
}
.dialog{
    display: none;
    position: fixed;
    z-index: 9999;
    overflow-y: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 90%;
    max-width: 1040px;
    max-height: 95%;
    padding: 50px 80px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background-color: #f5f5f5;
}
.dialog .close{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.dialog .close span{
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: #CC8100;
    top: 50%;
    left: 0;
    transform: rotate(-45deg);
    
}
.dialog .close span:last-child{
    transform: rotate(45deg);

}
.dialog>div::not(.close){
    width: 100%;
}
.dialog .form input[type="submit"]{
    width: 100%;
    font-size: 20px;
}
.dialog .title h2{
    font-size: 30px;
    line-height: 1;
    margin-bottom: 30px;
}
.dialog .form label{
    font-size: 20px;
    line-height: 1.5;
}
.dialog .form input{
    height: 50px;
}
@media (max-width:1279px){
    .dialog{
        padding: 40px;
    }
    .dialog .title h2{
        font-size: 24px;
        line-height: 1;
        margin-bottom: 25px;
    }
    .dialog .form label{
        font-size: 16px;
        line-height: 1.5;
    }
    .dialog .form input{
        height: 45px;
    }
}
@media (max-width:767px){
    input, textarea{
        font-size: 14px;
    }
    .dialog{
        padding: 25px;
    }
    .dialog .title h2{
        font-size: 20px;
        line-height: 1;
        margin-bottom: 20px;
    }
    .dialog .form label{
        font-size: 14px;
        line-height: 1.5;
    }
    .dialog .form input{
        height: 40px;
    }
    .dialog .form textarea{
        height: 80px;
    }
    .dialog .form input,.dialog .form textarea{
        padding: 8px;
    }
}