/*
* Specific styles of signin component
*/
body {
	background-color: #f5f5f5;
}

.container {
	overflow-y: scroll; /* Add the ability to scroll */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.container::-webkit-scrollbar {
	display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.container {
	-ms-overflow-style: none; /* IE and Edge */
	scrollbar-width: none; /* Firefox */
}

.card-container.card {
	max-width: 350px;
	width: 350px;
	padding: 0;
}

.btn {
	font-weight: 400;
	height: 36px;
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	cursor: pointer;
}

/*
* Card component
*/
.card {
	background-color: #1e3d99;
	/* just in case there no content*/
	padding: 20px 25px 30px;
	margin: 0 auto 25px;
	margin-top: 50px;
	/* shadows and rounded borders */
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	-moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
	border:none;
}

#language {
	position: relative;
	float: right;
	background-color: rgba(255, 255, 255, 0.37);
	height: 30px;
	width: 60px;
}

.navbar-top-links li:last-child {
	margin-right: 0;
}

.nav > li > a {
	color: black;
	font-weight: 600;
}

.nav li ul {
	left: auto;
	right: 0;
	margin-right: 0;
}

.navbar-top-links li a {
	padding: 15px;
}

.card-container.card .logo-wrapper {
	padding: 0px;
	margin: 0;
	min-height: 88px;
	max-height: 132px;
	object-fit: cover;
}

.profile-img-card {
	display: block;
	margin-left: 127px;
	margin-top: 10px;
	width: 96px;
	height: 96px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	position: absolute;
}
/*
* Form styles
*/
.profile-name-card {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	margin: 10px 0 0;
	min-height: 1em;
}

.form-signin #UserName,
.form-signin #Password {
	direction: ltr;
	height: 44px;
	font-size: 16px;
}

.form-signin input[type=password],
.form-signin input[type=text],
.form-signin button {
	width: 100%;
	display: block;
	margin-bottom: 10px;
	z-index: 1;
	position: relative;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.form-signin .form-control:focus {
	border-color: #142866;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #142866;
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #142866;
}

.btn.btn-signin {
	background-color: #142866;
	padding: 0px;
	font-weight: 400;
	font-size: 14px;
	height: 36px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	border: none;
	-o-transition: all 0.218s;
	-moz-transition: all 0.218s;
	-webkit-transition: all 0.218s;
	transition: all 0.218s;
}

.btn.btn-signin:hover,
.btn.btn-signin:active,
.btn.btn-signin:focus {
	background-color: #3366ff;
}

a.forgot-password:link {
	color: #f5f5f5;
}
a.forgot-password:visited {
	color: #f5f5f5;
}
a.forgot-password:hover {
	color: #c8def4;
}

.copyright-link {
	color: #7f7f7f !important;
}
