html,
body {
  height: 100%;
  font-family: Nunito Sans,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Arial,sans-serif;
  font-size: .875rem;
  font-weight: 400;
  background-color: #f2f8f9;
}
body {
  padding: 1px
}

.login-box {
  max-width: 550px;
  margin: auto;
  background-color: #fff;
  border: 1px solid #eaeaea;
  box-shadow: 0px 0px 10px #eaeaea;
  border-radius: 10px;
  margin-top: 50px;
}
.login-box > .login-header {
  background: linear-gradient(rgba(133, 129, 129, 0.5), rgba(133, 129, 129, 0.5)), url("/images/full-screen-image-3.jpg");
  background-size: 100%;
  background-position: center;
  padding: 5px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.login-box > .login-header > h2 {
  color: #fff;
  font-weight: 800;
  display: block;
  text-align: center;
  margin: 35px 0px;
}

.login-box > .login-body {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 30px 50px;
}
.login-box > .login-body .form-group label {
  font-size: 16px;
  font-weight: 600;
  color: #686e6e;
}
.login-box > .login-body .form-group .form-check label {
  font-size: 14px;
}
.login-box > .login-body input[type=text].form-control, .login-box > .login-body input[type=password].form-control {
  border-radius: 4px;
  line-height: 1.2;
  height: 50px;
  /* border-bottom-width: 3px; */
}
.login-box > .login-body input[type=text].form-control::placeholder, .login-box > .login-body input[type=password].form-control::placeholder {
  color: #a7a1a1;
}
.login-box > .login-body input[type=text].form-control:focus, .login-box > .login-body input[type=password].form-control:focus {
  box-shadow: none;
  border-top-color: #ced4da;
  border-bottom-color: #ced4da;
  border-right-color: #ced4da;
  border-left-color: #ced4da;
}
.login-box > .login-body input[type=text].form-control:focus::placeholder, .login-box > .login-body input[type=password].form-control:focus::placeholder {
  opacity: 0;
}

.brand {
  padding: 40px 0 0 0;
  display: block;
  text-align: center;
}
.brand > img {
  display: inline-block;
}

/* 
##Device = Laptops, Desktops
##Screen = B/w 1025px to 1280px
*/
/* 
##Device = Tablets, Ipads (portrait)
##Screen = B/w 768px to 1024px
*/
/* 
##Device = Tablets, Ipads (landscape)
##Screen = B/w 768px to 1024px
*/
/* 
##Device = Low Resolution Tablets, Mobiles (Landscape)
##Screen = B/w 481px to 767px
*/
/* 
##Device = Most of the Smartphones Mobiles (Portrait)
##Screen = B/w 320px to 479px
*/
@media (min-width: 320px) and (max-width: 480px) {
  .login-box {
    margin-top: 0px;
  }
  .login-box > .login-body {
    padding: 30px 25px;
  }
}
