html, body {
    padding: 0;
    height: 100vh;
}
img {
    max-width: 100%;
}
* {
    box-sizing: border-box;
    outline: none;
}
input::-webkit-input-placeholder {color: #C4C4C4;}
input::-moz-placeholder          {color: #C4C4C4;}
input:-moz-placeholder           {color: #C4C4C4;}
input:-ms-input-placeholder      {color: #C4C4C4;}
body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}
.wrapper {
    justify-content: center;
    align-items: center;
    height:100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 50px;
}
form {
    position: relative
}
input[type="text"] {
    width: 712px;
    border: 2px solid #FDB73A;
    height: 57px;
    border-radius: 7px;
    box-shadow: 0 4px 14px #E5E5E5;
    color: #4D4C4C;
    padding-left: 67px;
    background-image: url('../img/search-ic.svg');
    font-size: 20px;
    background-repeat: no-repeat;
    background-position: 27px center;
}
button {
    width: 142px;
    height: 37px;
    background-color: #FDB73A;
    color: #fff;
    text-align: center;
    border: none;
    font-size: 20px;
    font-weight: 900;
    border-radius: 4px;
    position: absolute;
    right: 12px;
    top: 10px
}
.slogan {
    text-align: center;
    font-family: 'Gloria Hallelujah';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    color: #4D4C4C;
    margin-top: 33px;
    line-height: 48px;
    letter-spacing: 0.1em;
}
a.logo img {
    max-width: 800px;
}

@media screen and (max-width:991px){
    input[type="text"] {
        border: 2px solid #FDB73A;
        height: 46px;
        border-radius: 7px;
        box-shadow: 0 4px 14px #E5E5E5;
        color: #4D4C4C;
        padding-left: 38px;
        background-image: url(../img/search-ic.svg);
        font-size: 14px;
        background-repeat: no-repeat;
        background-position: 13px center;
        background-size: 14px;
        width: 100%;
    }
    form {
        width: 95%;
    }
    button {
        width: 80px;
        height: 30px;
        font-size: 14px;
        right: 8px;
        top: 8px;
    }
    .slogan {
        text-align: center;
        font-family: 'Gloria Hallelujah';
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        color: #4D4C4C;
        margin-top: 14px;
        line-height: 36px;
        letter-spacing: 0.1em;
    }
    input[type="text"]:focus {
        box-shadow: none;
    }
    a.logo img {
        max-width: 100%;
    }
}
@supports (-webkit-overflow-scrolling: touch) {
   input {
     font-size: 14px;
   }
}