html {
	height: 100%;
}

body {
	/*
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  */
  position: relative;
  min-height: 100%;
  /* padding-top: 40px; */
  padding-bottom: 80px;
  background-color: #f5f5f5;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px; /* Set the fixed height of the footer here */
  line-height: 60px; /* Vertically center the text there */
  background-color: #e9ecef;
}

.form {
  width: 80%;
  max-width: 330px;
  padding: 10px;
  margin: auto;
}
.form .form-control {
  position: relative;
  box-sizing: border-box;
  height: auto;
  padding: 10px;
  font-size: 16px;
}
.form .form-control:focus {
  z-index: 2;
}
.form input[type="text"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.form input[type="number"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.form input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}