html {
  box-sizing: border-box;
}
body {
    margin: 0;
}
*, *:before, *:after {
  box-sizing: inherit;
}
.sc-banner {
    height: 250px;
    width: 300px;
    background-image: url(images/bg.jpg);
    position: relative;
}
.sc-banner__logo {
    background-image: url(images/logo.svg);
    height: 22px;
    width: 80px;
    z-index: 9;
    position: absolute;
    bottom: 20px;
    left: 67px;
    -webkit-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    -o-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
	background-repeat: no-repeat;
}
.sc-banner__text {
    background-image: url(images/text.png);
    height: 150px;
    width: 300px;
    z-index: 9;
    position: absolute;
    top: -20px;
    left: 0;

}
.sc-banner__form {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 120px;
	height: 60px;
}
.sc-banner__input {
    font-size: 12px;
    text-align: center;
    position: relative;
    width: 95px;
    height: 20px;
	display: block;
	margin: 0 auto 5px;
    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: relative;
	display: block;
	margin: 0 auto;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
    width: 100px;
    height: 25px;
    border: none;
    background-color: #f0ab2e;
    background-image: url(images/btn-text.png);
    background-repeat: no-repeat;
    background-position: center;
}
