﻿body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	margin: 0;
}

body, html {
	height: 100%;
	display: flex;
	flex-direction: column;
}

header {
	background: #f5f5f5;
	border-bottom: 1px solid #d9d9d9;
}

.header-container {
	display: flex;
	flex-direction: row;
	height: 40px;
}

.login-main {
	padding-top: 60px;
	height: 100%;
}

.login-card {
	padding: 20px 40px 40px 40px;
	width: 350px;
	margin: 0px auto;
	border-radius: 2px;
	border: 1px solid #d9d9d9;
	overflow: hidden;
	background-color: #fff;
}

.login-card h2 {
	font-weight: normal;
	font-size: 1.6em;
	padding-bottom: 20px;
}

.login-card button {
	display: block;
	margin-bottom: 10px;
	height: 30px;
	padding: 0px 20px;
}

.login-card input[type=text], input[type=password] {
	height: 44px;
	font-size: 16px;
	width: 100%;
	margin-bottom: 10px;
	-webkit-appearance: none;
	background: #fff;
	border: 1px solid #d9d9d9;
	border-top: 1px solid #c0c0c0;
	padding: 0 8px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.login-card input[type=text]:hover, input[type=password]:hover {
	border: 1px solid #b9b9b9;
	border-top: 1px solid #a0a0a0;
	-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
	-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

/*.btn-primary {
	background: #4d90fe;
	background-image: linear-gradient(to bottom, #4d90fe, #357ae8);
	color: #ffffff;
	text-decoration: none;
	border: 0;
}

.btn-primary:hover {
	background: #3cb0fd;
	background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
	text-decoration: none;
}*/

.btn-primary:disabled {
	background: #d9d9d9;
	background-image: none;
	text-decoration: none;
}

.login-card a {
	color: #666;
	font-weight: 400;
	text-align: center;
	display: inline-block;
	opacity: 0.6;
	transition: opacity ease 0.5s;
}

.login-card a:hover {
	opacity: 1;
}

.login-divider {
	margin: 16px 0;
	align-items: center;
	display: flex;
}
.login-divider span {
	margin: 0 16px;
	position: relative;
	top: -2px;
}
.login-divider::before, .login-divider::after {
	background-color: #dbdbdb;
	content: "";
	flex: 1 1 auto;
	height: 1px;
	width: 100%;
}

.btn-login-ext {
	width: 100%
}

input[type="checkbox"] {
	margin: 3px 3px 3px 0px;
}

.err {
	color: red;
	font-weight: bold;
	/*background-color: #f5f5f5;*/
	width: 100%;
	/*padding: 5px 10px;*/
}

.err:empty {
	display: none;
}

#topmessagecontainer {
	position: absolute;
	width: 100%;
	top: 0;
	display: none;
	text-align: center;
}

#topmessagecontainer span {
	background-color: #f9edbe;
	border: #f0c36d 1px solid;
	width: 100px;
	padding: 2px 10px;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.2);
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
	font-weight: bold;
}
