* {
    box-sizing: border-box;
}

body, html {
    height: 100%;
	overflow: hidden;
}

html {
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
}

body {
    padding-top: 0px;
    font-family: Roboto,'Segoe UI','Droid Sans',Tahoma,Arial,sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: #707980;
    background-color: #ebeef0;
    margin: 0;
    font-weight: 400;
}

a {
    outline: 0;
    cursor: pointer;
    color: #2685ee;
    text-decoration: none;
    background-color: transparent;
}

input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button, html input[type=button], input[type=reset], input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
}

button, select {
    text-transform: none;
}

::before, ::after {
    box-sizing: border-box;
}

button {
    overflow: visible;
}

button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

.t2-login {
    display: block;
    background-image: url('/assets/images/login/login-bg.png');
	background-repeat: no-repeat;
	background-size: cover;
	height: 100vh;
	position: relative;
	width: 100vw;
}

.content-box {
	background-color: #e7e7e7;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
	height: 310px;
	margin: 0 auto;
	font-size: 14px;
	position: absolute;
	top: calc(50vh - 160px);
	left: calc(50vw - 350px);
	width: 700px;
}

.login-panel, .image-panel {
    height: 310px;
}

.login-panel {
    color: #636363;
	float: left;
	padding: 15px;
	padding-top: 90px;
	position: relative;
	width: 40%;
}

.login-panel img {
    position: absolute;
	top: -51px;
	left: 0;
	right: 0;
	margin: auto;
}

.login-panel label, .login-panel input {
    display: block;
}

.login-panel label {
    margin-bottom: 0px;
}

.login-panel input, .login-panel button {
    padding: 5px;
	height: 45px;
	width: 100%;
}

.login-panel input {
    margin-bottom: 15px;
	border: 1px solid #cccccc;
}

.login-panel button {
    background-color: #094390;
	border: none;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
	color: #fff;
}

/**
* Image Panel
**/

.image-panel {
    background-image: url('/assets/images/login/login-side.png');
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	float: right;
	position: relative;
	width: 60%;
}

.image-panel span {
    bottom: 15px;
	left: 0;
	right: 0;
	margin: auto;
	font-size: 24px;
	position: absolute;
	text-align: center;
	text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
	width: 75%;
}

/**
* Footer
**/

.footer {
    color: #fff;
	font-size: 14px;
	position: absolute;
	top: calc(50vh + 160px + 30px);
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
}

/**
* Viewports for responsiveness behaviour
**/
@media only screen and (max-width: 700px) {
    .image-panel {
		display: none;
		width: 0;
	}

	.content-box {
		left: calc(50vw - 140px);
		width: 280px;
	}

	.login-panel {
		width: 100%;
	}

	body {
		padding-top: 0 !important;
	}

	.footer {
		top: calc(50vh + 160px + 20px);
	}
}