body {
	background: url('../img/office.jpg');
	background-size: cover;
	min-height: 100vh;
}
.vertical-offset-100 {
	padding-top: 100px;
}
.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
	margin: auto;
}
	
.login-container{
	position: relative;
	width: 300px;
	margin: 0px auto;
	padding: 20px 40px 40px;
	text-align: center;
	background: #fff;
	border: 1px solid #ccc;
	height: 330px;
}

.login-container::before,.login-container::after{
    content: "";
    position: absolute;
    width: 100%;height: 100%;
    top: 3.5px;left: 0;
    background: #fff;
    z-index: -1;
    -webkit-transform: rotateZ(4deg);
    -moz-transform: rotateZ(4deg);
    -ms-transform: rotateZ(4deg);
    border: 1px solid #ccc;

}

.login-container::after{
    top: 5px;
    z-index: -2;
    -webkit-transform: rotateZ(-2deg);
     -moz-transform: rotateZ(-2deg);
      -ms-transform: rotateZ(-2deg);

}

.avatar {
	margin: 10px auto 10px;
	border-radius: 50%;
}

.avatar text{
	font-family:Impact;
	font-size: 4em;
}

.form-box{
	margin-top: 30px;
	
}

input{
    width: 100%;
    padding: 10px;
    text-align: center;
    height:40px;
    border: 1px solid #ccc;
    background: #fafafa;
    transition:0.2s ease-in-out;

}

input:focus{
    outline: 0;
    background: #eee;
}

.welcome{
	color: #6c6c6c;
	font-size: 24px;
	font-weight: bold;
}

input[type="password"]{
    border-top: 0;
}

.form-box button.login{
    margin-top:15px;
    padding: 10px 20px;
}

.login{
	border-radius: 0px;
}

.spinner {
  margin:  auto;
  margin-top:10px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}
  
.spinner > div {
  background-color: #333;
  height: 100%;
  width: 6px;
  display: inline-block;
  
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
	margin: 0 2px;
}

.spinner .rect1 {
     background:#5cb85c;
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.spinner .rect2 {
     background:#5cb85c;
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
     background:#5cb85c;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
     background:#5cb85c;
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
     background:#5cb85c;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% { 
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% { 
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}

.sk-circle {
	margin: 25px auto;
	width: 10px;
	height: 10px;
	position: relative;
	background:#aaaaaa;
	border-radius:100%;
	left:-18px;
	-webkit-animation: sk 1.2s infinite ease-in-out;
}
   
@keyframes sk {
	1% {top: -15px;}
	2% {top: 10px;}
	5% {top: -20px;}
	10% {left: -10px;}
	20% {top:-25px;}
	30% {left:15px;background:#5cb85c;}
	35% {top:5px;}
	45% {top:-5px;}
	50% {top:-5px;}
	60% {top:-6px;}
	70% {top:6px;}
	80% {top:6px;}
	60% {top:-6px;}
}

.dialog {
	position: absolute;
	background: #fff;
	padding: 10px;
	color: #222;
	border-radius: 3px;
	margin-left: 20px;
	border: 4px solid black;
}

.dialog::after {
	content: '';
	display: block;
	position: absolute;

	top: -15px;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 20px solid white;
}

.right.dialog::after{
	left: 75%;
}

.left .dialog::after{
	left: 10%;
}

.fido_button{
	position: absolute;
	right: 5px;
	bottom: 5px;
	opacity: 0.4;
	cursor:pointer;
}

.fido_button:hover{
	opacity: 1;
}

.accept_terms{
	display: none;
	width:0;
}

.btn{
	border-radius: 6px;
}

#name{
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}

#pass{
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
}