* {
box-sizing: border-box;
}

*:focus {
	outline: none;
}
body {
font-family: Arial;
background-color: #3498DB ! important;
padding-top: 50px;
}
.login {
margin: 20px auto;
width: 300px;
}
.login-screen {
background-color: #eee;
padding: 20px;
border-radius: 10px;
-webkit-box-shadow: 5px 10px 13px 0px rgba(96,96,144,1);
-moz-box-shadow: 5px 10px 13px 0px rgba(96,96,144,1);
box-shadow: 5px 10px 13px 0px rgba(96,96,144,1);
}

.app-title {
text-align: center;
color: #3498DB;
}

.app-title h1{
	font-size:3em;
	color: rgba(52,152,219, 0.8);
	text-shadow: 1px 4px 6px #def, 0 0 0 #000, 1px 4px 6px #eee;
}

::-moz-selection { background: #5af; color: #fff; text-shadow: none; }
::selection { background: #5af; color: #fff; text-shadow: none; }

.login-form {
text-align: center;
}
.control-group {
margin-bottom: 10px;
}

input {
text-align: center;
background-color: #fff;
border: 2px solid #ddd;
border-radius: 3px;
font-size: 16px;
font-weight: 200;
padding: 10px 0;
width: 250px;
transition: border .5s;
}

input:focus {
border: 2px solid #3498DB;
box-shadow: none;
}

.btn {
  border: 2px solid transparent;
  background: #3498DB;
  color: #ffffff;
  font-size: 16px;
  line-height: 25px;
  padding: 10px 0;
  text-decoration: none;
  text-shadow: none;
  border-radius: 3px;
  box-shadow: none;
  transition: 0.25s;
  display: block;
  width: 250px;
  margin: 0 auto;
}

.btn:hover {
  background-color: #2980B9;
}

.login-link {
  font-size: 12px;
  color: #444;
  display: block;
	margin-top: 12px;
}

.login-keep-label{
	font-size:0.8em;
	vertical-align:middle;
	padding-left: 2em;
}

.error_box{
    text-align: center;
    background-color: #fcd;
    border: 2px solid #f35;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 200;
    padding: 10px 0;
    width: 250px;
    transition: border .5s;
	color:#f35;
}

.alert-box-danger{
	padding: 0.8em;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.switch-holder{
	position: relative;
	display: inline-block;
	padding-bottom: .2em;
	}
	
.switch {
  position: relative;
  display: inline-block;
  width: 3em;
  height: 1em;
  top:0.2em;
  
  font-size:1.2em;
}

.switch input {display:none;}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 0.6em;
  width: 0.6em;
  left: 0.3em;
  bottom: 0.2em;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(1.8em);
  -ms-transform: translateX(1.8em);
  transform: translateX(1.8em);
}

/* Rounded sliders */
.slider.round {
  border-radius: 1em;
}

.slider.round:before {
  border-radius: 50%;
}

@media screen and (max-width: 1680px) {
	body{
		padding-top:10px;
	}
}