﻿body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	height: 100vh;
	width: 100vw;
	display: flex;
	align-items: center;
	justify-content: center;
}

#loginBox {
	max-width: 700px;
	width: 85%;
	padding: 3rem 0.5rem 2rem 0.5rem;
	border: 2px solid #F1F0F0;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.logo-img {
	width: 100%;
}

.centerForm {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: white;
	font-family: Arial;
}

.login-img-div {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.login-form-div {
	max-width: 350px;
	width: 100%;
}

.login-form-div table {
	width: 100%;
	max-width: 250px;
}

.login-form-div table tr, .login-form-div table td {
	text-align: center;
}

.login-form-div input {
	width: 100%;
	max-width: 250px;
	border-radius: 5px;
}

#ctl00 {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.textStyle {
	border-style: solid;
	border-width: 1px;
	border-color: #e2e2e2;
	color: #000000;
	background-color: #f1f8fe;
	width: 250px;
	height: 35px;
	font-family: Arial;
	padding-left: 10px;
}

.loginButton {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	font-family: Arial;
	color: #ffffff;
	font-size: 15px;
	font-weight: bold;
	padding: 10px;
	background: #21618c;
	text-decoration: none;
	cursor: pointer;
	width: 100%;
	margin-top: 10px;
	border: none;
}

.shrinkFont {
	font-size: 12px;
}

@media screen and (max-width: 450px) {
	#loginBox {
		height: 70%;
		max-height: 500px;
	}
	.login-form-div input {
		max-width: none;
	}
	.login-form-div table {
		max-width: none;
	}
}

@media screen and (min-width: 450px) {
	.logo-img {
		max-width: 350px;
	}
}