html,
body {
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  padding: 40px;
  background-color: #f5f5f5;
}

.form-signin {
  width: 100%;
  max-width: 350px;
  padding: 30px;
  margin: auto;
  background-color: #ffffff;
  border: 2px outset #c1c1c1;
  box-shadow: 4px 6px 12px rgba(0,0,0,0.32);
}
.form-signin .checkbox {
  font-weight: 400;
}
.form-signin .form-control {
  position: relative;
  box-sizing: border-box;
  height: auto;
  padding: 10px;
  font-size: 16px;
}
.form-signin .form-control:focus {
  z-index: 2;
}
.form-signin input[type="text"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.fade {
	animation: fadeIn 2.3s ease 0.7s 1 normal forwards;
}
@keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

