html {
  box-sizing: border-box;
}
body {
    margin: 0;
}
*, *:before, *:after {
  box-sizing: inherit;
}
.sc-banner {
    height: 90px;
    width: 728px;
    background-image: url(images/bg.jpg);
    position: relative;
}
.sc-banner__logo {
    background-image: url(images/logo.svg);
    background-repeat: no-repeat;
    height: 30px;
    width: 113px;
    z-index: 9;
    position: absolute;
    top: 50%;
    left: 24px;
    -webkit-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}
.sc-banner__text {
    background-image: url(images/text.png);
    background-repeat: no-repeat;
    height: 55px;
    width: 355px;
    z-index: 9;
    position: absolute;
    top: 50%;
    left: 48.5%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}
.sc-banner__form {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 22px;
    width: 132px;
}
.sc-banner__input {
    background-color: #fff;
    background-image: url("images/input-text.png");
    background-position: center center;
    background-repeat: no-repeat;
    border: medium none;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.3) inset;
    font-size: 14px;
    height: 25px;
    left: 0;
    padding: 0px;
    position: absolute;
    text-align: center;
    top: 15px;
    width: 100%;
}
.sc-banner__input:focus,
.sc-banner__input:valid {
    background-image: none;
}
.sc-banner__btn {
    cursor: pointer;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 27px;
    border: none;
    border-radius: 5px;
    background-color: #fcb01a;
    background-image: url(images/btn-text.png);
    background-repeat: no-repeat;
    background-position: center;
}
