html {
  position: relative;
  min-height: 100%;
}

body {
  color: #999;
  background-image: linear-gradient(rgb(16,36,71),rgb(16,36,71)) !important;
  font-family: 'Varela Round', sans-serif;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 60px;
  line-height: 60px; /* Vertically center the text there */
  font-size: 10pt;
}

body > .container {
  padding: 60px 15px 0;
}

.footer > .container {
  padding-right: 15px;
  padding-left: 15px;
}

code {
  font-size: 80%;
}

.form-control {
  box-shadow: none;
  border-color: #ddd;
}

.form-control:focus {
  border-color: #ef7d00; 
}

.login-form {
  width: 350px;
  margin: 0 auto;
  padding: 30px 0;
}

.login-form form {
  color: #434343;
  border-radius: 1px;
  margin-bottom: 15px;
  background: #fff;
  border: 1px solid #f3f3f3;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  padding: 30px;
}

.login-form h4 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.login-form .avatar {
  color: #fff;
  margin: 0 auto 30px;
  text-align: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  z-index: 9;
  background-image: linear-gradient(rgb(16,36,71),rgb(16,36,71)) !important;
  padding: 15px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}

.login-form .avatar i {
  font-size: 62px;
}

.login-form .form-group {
  margin-bottom: 20px;
}

.login-form .form-control, .login-form .btn {
  min-height: 40px;
  border-radius: 2px; 
  transition: all 0.5s;
}

.login-form .close {
  position: absolute;
  top: 15px;
  right: 15px;
}

.login-form .btn {
  background-image: linear-gradient(rgb(16,36,71),rgb(16,36,71)) !important;;
  border: none;
  line-height: normal;
}

.login-form .btn:hover, .login-form .btn:focus {
  background: #42ae68;
}

.login-form .checkbox-inline {
  float: left;
}

.login-form input[type="checkbox"] {
  margin-top: 2px;
}

.login-form .forgot-link {
  float: right;
}

.login-form .small {
  font-size: 13px;
}

.login-form a {
  color: #ef7d00;
}