body>main{
    height: 100%;
}
body>main>main{
    padding:80px var(--menuPaddingHoriz);
    display: flex;
    width: 700px;
    max-width: 100%;
    height: 100%;
    margin: auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    backdrop-filter: blur(2px);
}
/* @media (min-width:980px) {
    body>main>main{
        padding-bottom: 32px;
    }
} */
/* body>main>main>*:not(form){
    max-width: 600px;
} */
body>main>main .title{
    color: var(--darkBlue);
    font-family: 'IRANSansWeb_Bold';
    font-size: 40px;
    text-align: center;
}
body>main>main p{
    color: var(--darkBlue);
    font-weight: 700; 
    text-align: center;
}
@media (max-width:700px) {
body>main>main .title{
    font-size: 32px;
}
}
body>main>main>form{
    width: 500px;
    max-width: 100%;
    height: 48px;
    display: flex;
    border: 2px solid var(--menuItmeBlueMid);
    border-radius: 48px;
    overflow: hidden;
    background-color: var(--menuItmeBlueMid);
}
body>main>main>form>*{
    border: none;
    background: none;
}
body>main>main>form>input[type=text]{
    flex: 1;
    background: #fff;
    padding-right: 16px;
}
body>main>main>form>input[type=submit]{
    padding: 0 32px;
    color: #fff;
    font-family: IRANSansWeb_Bold !important;
    font-size: 16px;
}
@media (max-height:680px) {
body>main>main>form{
    height: 40px !important;
}
}
#logoSearch{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width:250px ;
    max-width: 40%;
    z-index: -2;
    opacity: .5;
}