/*
 ----------------------------
 -------- LOGIN Page --------
 ----------------------------
*/

div#bgcontainer{
	background: #0264d6; /* Old browsers */
background: -moz-radial-gradient(center, ellipse cover,  #f6f 1%, #1c2b5a 100%); /* FF3.6+ */
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(1%,#f6f), color-stop(100%,#1c2b5a)); /* Chrome,Safari4+ */
background: -webkit-radial-gradient(center, ellipse cover,  #f6f 1%,#1c2b5a 100%); /* Chrome10+,Safari5.1+ */
background: -o-radial-gradient(center, ellipse cover,  #f6f 1%,#1c2b5a 100%); /* Opera 12+ */
background: -ms-radial-gradient(center, ellipse cover,  #f6f 1%,#1c2b5a 100%); /* IE10+ */
background: radial-gradient(ellipse at center,  #f6f 1%,#1c2b5a 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6f', endColorstr='#1c2b5a',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
height:calc(100vh);
width:100%;
}

[class*="fontawesome-"]:before {
  font-family: 'FontAwesome', sans-serif;
}

/* ---------- GENERAL ---------- */
* {
  box-sizing: border-box;
	margin:0px auto;

  &:before,
  &:after {
	box-sizing: border-box;
  }

}

body {
	color: #606468;
	font: 87.5%/1.5em 'Open Sans', sans-serif;
	margin: 0;
}

a {
	color: #eee;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

input {
	border: none;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.5em;
	padding: 0;
	-webkit-appearance: none;
}

p {
	line-height: 1.5em;
}

.clearfix {
  *zoom: 1;

  &:before,
  &:after {
	content: ' ';
	display: table;
  }

  &:after {
	clear: both;
  }

}

.container {
  left: 50%;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* ---------- LOGIN ---------- */
#login form {
	width: 250px;
}
#login {
	display: inline-block;
	width: 40%;
}
#login {
	width: 100%;
}
#login form span.fa {
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 3px 0px 0px 3px;
	color: lightgrey;
	display: block;
	float: left;
	height: 50px;
	font-size:24px;
	line-height: 50px;
	text-align: center;
	width: 50px;
}
#login form input {
	height: 50px;
}
fieldset{
	padding:0;
	border:0;
	margin: 0;

}
#login form input[type="text"], input[type="password"] {
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 0px 3px 3px 0px;
	color: #fff;
	margin-bottom: 1em;
	padding: 0 16px;
	width: 200px;
}
#login form input[type="submit"], #login form button[type="submit"] {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	background-color: #000000;
	color: #eee;
	font-weight: bold;
	/* margin-bottom: 2em; */
	font-size: 1.2em;
	text-transform: uppercase;
	padding: 5px 10px;
	height: 30px;
	border: 0px;
	-webkit-transition: background-color .51s ease-out;
	-moz-transition: background-color .51s ease-out;
	-o-transition: background-color .51s ease-out;
	transition: background-color .51s ease-out;
}
#login form input[type="submit"]:hover, #login form button[type="submit"]:hover {
	background-color: deeppink; /*#bada55*/
	color: white;
}
#login > p {
	text-align: center;
}
#login > p span {
	padding-left: 5px;
}
.middle {
	display: flex;
	width: 600px;
}
.logo {
	color: #fff;
	font-size: 50px;
	line-height: 125px;
	width: 220px;
}
.logo img {
	max-width: 100%;
	width: 238px !important;
}
/* ---------------------------------- */
input[type=checkbox]{
	height: 0;
	width: 0;
	visibility: hidden;
}

label {
	cursor: pointer;
	text-indent: -9999px;
	width: 60px;
	height: 30px;
	background: grey;
	display: block;
	border-radius: 100px;
	position: relative;
	float: left;
}

label:after {
	content: '';
	position: absolute;
	top: 5px;
	left: 5px;
	width: 20px;
	height: 20px;
	background: #fff;
	border-radius: 90px;
	transition: 0.3s;
}

input:checked + label {
	background: deeppink; /*#bada55*/
}

input:checked + label:after {
	left: calc(100% - 5px);
	transform: translateX(-100%);
}

label:active:after {
	width: 20px;
}
span.lblcheck {
	color: white;
	font-size: 1.1em;
	font-weight: 400;
	display: block;
	margin: -50px 0 0 70px;
	position: absolute;
}

.alert-danger-custom {
	text-align: center;
	margin: 1em auto;
	font-size: 1.6em;
	font-weight: 600;
	width: 28%;
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 640px) {
	.alert-danger-custom {
		width: 80%;
	}
}