@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    font-family: "Poppins", sans-serif;
    color: #242F2F;
    font-size: 16px;
    line-height: 1.38;
    font-weight: 400;
    background-color: #000000;
}
#response{
    font-size: 12px; 
    font-weight: 500;
}
#response.success {
    color: green;
}
#response.error {
    color: red;
}
div#response.info {
    color: #0808ff;
}
.page_wrapper {
    min-height: 100vh;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(img/desktop_banner.png);
    background-size: cover;
    background-position: 70% center;
    position: relative;
}

.inner_box {
    width: 100%;
    max-width: 360px;
    text-align: center;
}

.logo {
    width: 160px;
}

form#wesender-form {
    background-color: #000;
    padding: 20px 35px 15px;
    border-radius: 40px;
    margin-top: 30px;
    text-align: left;
    color: #fff;
    border: 6px solid #fff;
}
h1{
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    text-shadow: 6px 6px 2px rgba(0, 0, 0, 0.65);
}
h1 span{
    color: #E2E900;
}
h2 {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
}
input:focus, button:focus{
    outline: none;
}
.input_group input {
    background-color: #E2E900;
    border: 3px solid #fff;
    width: 100%;
    display: block;
    font-size: 15px;
    padding: 0 14px;
    height: 45px;
    border-radius: 10px;
    color: #000;
    margin-top: 5px;
    font-family: inherit;
}

.input_group {
    margin-bottom: 25px;
}

.phone_box {
    display: flex;
    align-items: center;
}
.phone_box input{
}
.phone_box input:first-child {
    width: 70px;
    color: #000;
    border-radius: 10px 0 0 10px;
    border-right: none;
}

.phone_box input:last-child {
    border-radius: 0 10px 10px 0;
    border-left: none;
}
.button {
    border-radius: 19px;
    padding: 11px 22px;
    text-align: center;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 700;
    color: #000;
    background-color: #fff;
    border: none;
    margin-bottom: 10px;
    font-family: inherit;
    line-height: 1;
    cursor: pointer;
    transition: 0.3s;
}
.button:hover{
    background-color: #E2E900;
    color: #000000;
}
.inner_box h1 {
    position: absolute;
    top: 45%;
    right: 9%;
    width: 368px;
}

@media (min-width: 1366px) and (max-width: 1680px){
    .inner_box h1 {
        right: 4%;
    }
}
@media (min-width: 1200px) and (max-width: 1365.98px){
    .inner_box h1 {
        right: 4%;
        font-size: 32px;
        width: 285px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px){
    .inner_box h1 {
        right: 3%;
        font-size: 24px;
        width: 225px;
    }
}
@media (max-width: 991.8px){
    .inner_box h1 {
        position: static;
        margin-left: auto;
        text-align: right;
        font-size: 30px;
        width: 275px;
    }
    .logo {
        width: 160px;
        position: absolute;
        right: 45px;
        top: 40px;
    }
    .page_wrapper{
        background-image: url(img/mobile_banner.png);
        background-position: top center;
    }
}
@media (max-width: 575px){
    form#wesender-form {
        padding: 25px;
    }
    h2{
        font-size: 30px;
    }
    .page_wrapper{
        padding-top: 0px;
    }
    .logo {
        width: 120px;
        right: 20px;
        top: 20px;
    }
    form#wesender-form {
        padding: 20px 30px 15px;
        margin-top: 0;
    }
    .input_group {
        margin-bottom: 15px;
    }
    .inner_box h1 {
        position: static;
        margin-left: auto;
        text-align: right;
        font-size: 17px;
        width: 159px;
        text-shadow: 3px 3px 1px rgba(0, 0, 0, 0.65);
    }
    .inner_box {
        max-width: 270px;
    }
}