.banner {
	height: calc(100vw / 27 * 9 );
	background-size: cover;
	background-position: center;
}
.title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 10px;
}
.content {
	font-size: 16px;
	line-height: 2;
}
.user-box {
	padding: 60px 0;
	margin: auto;
}
.form-control {
	background: #000000!important;
}
.form-control:focus {
    color: #fff!important;
    border-color: #fff!important;
}
.input-box {
	width: 350px!important;
}
[class^="icon-"], [class*=" icon-"] {
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    min-width: 1em;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    vertical-align: middle;
    position: relative;
    top: -1px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.spinner {
    display: inline-block;
    -webkit-animation: rotation 1s linear infinite;
    -o-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
	0% {
	    transform: rotate(0deg);
	}
	100% {
	    transform: rotate(360deg);
	}
}
@media only screen and (max-width: 756px) {
	.banner {
		height: calc(100vw / 16 * 9 );
	}	
}