﻿body {
	margin: 0;
	padding: 0;
	background-image: url(/img/login-background.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: fit-content;
}

@media only screen and (max-width: 767px) {
	
}

a {
	text-decoration: none;
	color: dimgrey;
}

a:hover {
	color: black;
}

.main-section {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 80vh;
}

.login-section {
	padding: 10px;
}

.input-container {
	position: relative;
	margin-top: 10px;
	margin-bottom: 0px;
	width: contain;
}

.icon {
	color: GrayText;
	position: absolute;
	transform: translateY(-50%);
	right: 10px;
	pointer-events: none;
	top: 50%;
}

.login-container {
	background-color: #acc8db;
	border-radius: 10px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.login-container > hr {
	width: 90%;
}

.login-title {
	background-color: #4372c4;
	color: white;
	width: 100%;
	border-radius: 10px 10px 0 0;
	font-size: 18px;
	font-weight: bold;
	line-height: 5vh;
	text-align: center;
	position: relative;
	margin-bottom: 20px;
	padding: 10px;
}

.login-form {
	display: flex;
	flex-direction: column;
	margin-left: 50px;
	padding-right: 50px;
	align-items: start;
}

.login-btn {
	padding: 10px;
	background-color: #000;
	color: white;
	border: none;
	cursor: pointer;
	border-radius: 10px;
	min-width: 10vh;
	margin-top: 20px;
	text-transform: uppercase;
}
	.login-btn:hover {
		color: #5794ff;
	}

.forgot-password-btn {
	background-color: slategrey;
	color: white;
	border: none;
	cursor: pointer;
	border-radius: 10px;
	min-width: 10vh;
	margin-top: 10px;
	font-size: 14px;
}

.forgot-password-link a {
	font-size: 13px;
}

.text-danger {
	font-size: 12px;
}

.k-textbox {
	min-width: 300px;
}

.back-to-login-link {
	margin-bottom: 5px;
}

.back-to-login-link a {
	
	font-size: 13px;
	color: lightslategrey;
}

	.back-to-login-link a:hover {
		color: lightcyan;
	}

.back-to-login-link i {
	color: lightslategrey;
}

.validation-summary-errors {
	color: red;
}

	.validation-summary-errors > ul {
		list-style-type: none;
	}