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);
    height: 23px;
    width: 90px;
    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);
    height: 26px;
    width: 392px;
    z-index: 9;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-55%, -50%, 0);
    -ms-transform: translate3d(-55%, -50%, 0);
    -o-transform: translate3d(-55%, -50%, 0);
    transform: translate3d(-55%, -50%, 0);
}
.sc-banner__form {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 22px;
    width: 132px;
}
.sc-banner__input {
    font-size: 16px;
    text-align: center;
    position: absolute;
    top: 11px;
    left: 0;
    width: 100%;
    height: 36px;
    border: none;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.3) inset;
    padding: 10px;
    background-color: #fff;
    background-image: url(images/input-text.png);
    background-repeat: no-repeat;
    background-position: center;
}
.sc-banner__input:focus,
.sc-banner__input:valid {
    background-image: none;
}
.sc-banner__btn {
    cursor: pointer;
    position: absolute;
    top: 54px;
    left: 0;
    width: 100%;
    height: 27px;
    border: none;
    background-color: #f0ab2e;
    background-image: url(images/btn-text.png);
    background-repeat: no-repeat;
    background-position: center;
}
