body {
  margin: 0;
  padding: 0;
  background-color: rgba(238, 238, 238, 1);
  overflow-x: hidden;
}

.fill {
  min-height: 100%;
  height: 100%;
}

.loginscreen::before {
  content: '';
  display: block;
  position: absolute;
  background-color: #000000;
  opacity: 0.65;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 568px) and (max-width: 823px) and (orientation: landscape) {
  .loginscreen {
    background-color: rgba(238, 238, 238, 1);
  }
}

@media only screen and (min-width: 824px) and (orientation: landscape) {
  .loginscreen {
    background: url('assets/img/login.jpg');
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media only screen and (min-width: 824px) and (orientation: portrait) {
  .loginscreen {
    background: url('assets/img/login.jpg');
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media only screen and (orientation: portrait) {
  .loginscreen {
    background: url('assets/img/login.jpg');
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media only screen and (max-width: 575px) {
  .login-form {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    background-color: rgba(238, 238, 238, 0.9);
    padding-top: 100px;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1),
      -5px 6px 20px 0 rgba(0, 0, 0, 0.07);
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .login-form {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1),
      -5px 6px 20px 0 rgba(0, 0, 0, 0.07);
  }
}

@media only screen and (min-width: 768px) {
  .login-form {
    top: 50%;
    left: 50%;
    background-color: rgba(238, 238, 238, 0.9);
    transform: translate(-50%, -50%);
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1),
      -5px 6px 20px 0 rgba(0, 0, 0, 0.07);
  }
}

.sub-title {
  color: #666666;
}

.input-fields {
  background-color: transparent;
  border-radius: 0;
  border: none;
  border-bottom: thin solid #b3b3b3;
}

.input-fields:focus {
  outline: none;
  background-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  border-radius: 0;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid #808080;
}

.login-button {
  width: 100%;
  background-color: rgb(146, 5, 19);
  color: white;
}

.login-button:hover {
  color: white;
  background-color: rgb(192, 7, 25);
}

.powerby {
  font-size: 12px;
}

.link-color {
  color: #586a8e;
}

.link-color:hover {
  text-decoration: none;
}
