@font-face {
    font-family: 'GothamThin';
    src: url('../fonts/gotham_thin.eot');
    src: local('O'), url('../fonts/gotham-thin.woff') format('woff'), url('../fonts/gotham-thin.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}
*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
:focus, :active {
    outline: none;
}
a:focus, a:active {
    outline: none;
}
aside, nav, footer, header, section {
    display: block;
}
html, body {
    height: 100vh;
    margin: 0;
    padding: 0;
    min-width: 320px;
    position: relative;
    width: 100%;
    color: #000;
}
body {
    font-size: 100%;
    line-height: 1;
    font-size: 14px;
    font-family: "GothamThin";
	background: url('../img/bg.png') top no-repeat fixed;
    background-size: cover;
	}
a, a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
img {
    vertical-align: top;
}
.clr {
    clear: both;
    display: block;
}
.wrapper {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}
.row:after {
    display: block;
    content: '';
    clear: both;
}
.container {
    position: relative;
    padding: 0 15px;
}
.content {
	min-height: 100vh;
    max-width: 425px;
    margin: 0 auto;
    text-align: center;
	display: flex;
	justify-content: center;
  /* align-self: center;    <---- REMOVE */
	align-items: center;   /* <---- NEW    */

}

.content-form {
    padding-top: 50px;
	font-size: 16px;
	text-align: center;
	color: #fff;
}
.content-form-input {
    border: 1px solid #96bbe8;
    width: 100%;
	margin: 23px 0;
	font-size: 16px;
	border-radius: 1px;
	
}
.content-form__input {
    font-family: "GothamThin";
    width: 100%;
    height: 70px;
    background-color: transparent;
    color: #fff;
    padding: 0 10px;
	text-align: center;
	font-size: 16px;
}
.content-form-input.captcha {
    font-family: "GothamThin";
    width: 100%;
    height: 70px;
    background-color: transparent;
    color: #fff;
    padding: 0 10px;
	text-align: center;
	font-size: 16px;
}
.field-loginform-verifycode label {
	display: block;
}
.content-form__btn {
	font-size: 16px;
    line-height: 70px;
    display: block;
    width: 100%;
    height: 70px;
    margin-top: 31px;
    cursor: pointer;
    color: #1552b4;
    border-radius: 1px;
	border: 1px solid #276fca;
    background-color: #fff;
	margin: 24px 0;
	text-transform: uppercase;
}
.content-form__btn.signup {
	color: #fff;
	background-color: #256cc8;
	border: 1px solid #96bbe8;
}
.content-version {
	color: #fff;
	text-transform: uppercase;
	margin-top: -25px;
	margin-left: 15px;
}
.bottom {
    height: 45px;
    margin-top: -45px;
}

footer {
    width: 100%;
    height: 37px;
    text-align: right;
    color: #8795b7;
    line-height: 37px;
    font-size: 12px;
	font-weight:bold;
}
footer a, footer a:visited {
    color: #8795b7;
}
@media (max-height: 700px) {
	.content {
		padding: 4% 0 50px 0;
	}
	footer {
		text-align: center;
	}
	.content-form-input, .content-form__btn {
		margin: 13px 0;
	}
}