/*=============================
  WebMingles Hero SEO Form
=============================*/

.wm-seo-form{
    width:100%;
}

.wm-seo-form-card{
    width:100%;
    max-width:430px;
    margin:0 auto;
    background:#fff;
    border-radius:16px;
    padding:22px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    border-top:4px solid #f15a24;
}

.wm-seo-form-card h2{
    font-size:26px;
    font-weight:700;
    color:#222;
    text-align:center;
    line-height:1.2;
    margin-bottom:8px;
}

.wm-seo-form-card h2 span{
    color:#f15a24;
}

.wm-seo-form-card p{
    text-align:center;
    font-size:13px;
    color:#666;
    line-height:22px;
    margin-bottom:18px;
}

.wm-input-box{
    position:relative;
    margin-bottom:12px;
}

.wm-input-box input,
.wm-input-box select{

    width:100%;
    height:48px;
    border:1px solid #ddd;
    border-radius:8px;
    padding:0 42px 0 15px;
    outline:none;
    font-size:14px;
    background:#fff;
    transition:.3s;

}

.wm-input-box input:focus,
.wm-input-box select:focus{

    border-color:#f15a24;
    box-shadow:0 0 0 3px rgba(241,90,36,.12);

}

.wm-input-box i{

    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    color:#f15a24;
    font-size:15px;
    pointer-events:none;

}

.wm-input-box select{

    appearance:none;
    cursor:pointer;

}

.wm-btn{

    width:100%;
    height:50px;
    border:none;
    border-radius:8px;
    background:#f15a24;
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;

}

.wm-btn:hover{

    background:#db4c1c;
    transform:translateY(-2px);

}

.wm-btn i{

    margin-left:8px;

}

.wm-privacy{

    text-align:center;
    margin-top:12px;
    font-size:11px;
    color:#777;

}

.wm-privacy i{

    color:#f15a24;
    margin-right:5px;

}

/* Hero Section */

.banner-parent{

    align-items:center;

}

.banner-right{

    display:flex;
    justify-content:center;
    align-items:center;

}

/* Tablet */

@media(max-width:991px){

.wm-seo-form-card{

    margin-top:35px;
    max-width:100%;

}

}

/* Mobile */

@media(max-width:576px){

.wm-seo-form-card{

    padding:18px;

}

.wm-seo-form-card h2{

    font-size:24px;

}

.wm-input-box input,
.wm-input-box select{

    height:45px;

}

.wm-btn{

    height:46px;

}

}