/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}
body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 60px;
  background-color: #f5f5f5;
}


/* Custom page CSS
-------------------------------------------------- */
/* Not required for template or sticky footer method. */

body > .container {
  padding: 60px 15px 0;
}
.container .text-muted {
  margin: 20px 0;
}

.footer > .container {
  padding-right: 15px;
  padding-left: 15px;
}

code {
  font-size: 80%;
}


#form-signin .checkbox input[type=checkbox] {
	position: static;
	margin-left: 0px;
}

#form-signin {
  /*position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);*/
}

.nav-tabs {
	margin-bottom: 15px;
}

.form-control {
	height: 24px;
	padding: 0px 5px;
}

textarea.form-control {
	padding: 3px 5px;	
}

.input-group-addon {
	padding: 0px 6px;	
}

.input-group-addon i {
	font-size: 14px;	
}

@media (min-width: 768px) {
	.form-horizontal .control-label {
		padding-top: 4px;
	}
}


.clear {
	clear: both;
}

/* Header 
-------------------------------------------------- */

#headercontainer {
	position: relative;
}

#usermessage {
	position: absolute;
	right: 70px;
	top: 0px;
	padding-top: 15px;
  	padding-bottom: 15px;
  	line-height: 20px;
}

@media (min-width: 768px)
{
	#usermessage {
	  right: 15px;
		
	}
}

/* Forms 
-------------------------------------------------- */

.form {
  max-width: 330px;
  padding: 15px;
  margin: 0 auto;
}
.form .form-heading,
.form .checkbox {
  margin-bottom: 10px;
}
.form .checkbox {
  font-weight: normal;
}

.form-horizontal .radio.inline {
	display: inline-block;
	margin-right: 5px;
}

.form-horizontal .help-block {
	margin-bottom: 0px;
}

.form .form-control {
  position: relative;
  height: auto;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  font-size: 16px;
}
.form .form-control:focus {
  z-index: 2;
}
.form input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.form input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.form-horizontal .control-label {
	text-align: left;
}

/* Alert
-------------------------------------------------- */

.alert {
	display: inline-block;
	background-color: #f2dede;
	color: #a94442;
	padding: 5px 10px;
	border-radius: 5px;
	text-align: center;
	
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	
	z-index: 50;
	
	cursor: pointer;
}

.alert-success {
	background-color: #dff0d8;
	color: #3c763d;	
}

.alert-info {
	background-color: #fcf8e3;
	color: #8a6d3b;
}

.alert strong {
	font-weight: bold;
}



/* Users
-------------------------------------------------- */

#passwordcheck {
	position:absolute;
	left:100%;
	top: 0px;
	padding:15px;
	background:#fefefe;
	border-radius:5px;
	box-shadow:0 1px 3px #ccc;
	border:1px solid #ddd;
	
	opacity: 0;
	transition: opacity 0.5s;
	z-index: 2;
	
	width: 250px;
}	

@media (max-width: 767px) {
	#passwordcheck {
		left: 15px;
		top: 40px;
	}
}



#passwordcheck.show {
	opacity: 100;
}

#passwordcheck h5 {
	margin-top: 0px;
}

#passwordcheck i {
	margin-top: 3px;
}

#passwordcheck ul {
	margin: 0px;
	padding: 0px;
}
#passwordcheck li {
	list-style: none;
}	

#passwordcheck .valid {
	color:#3a7d34;
}

#passwordcheck .valid .fa-times {
	display: none;
}

#passwordcheck .invalid {
	color:#ec3f41;
}

#passwordcheck .invalid .fa-check {
	display: none;
}