body, html {
    height: 100%;
    margin: 0;
}
body {
    background: url('../img/bg.jpg') no-repeat top center;
    background-size: cover;
    font-family: "Lato", sans-serif;
}
.login-container {
    min-height: 100vh;
}
.login-form {
    background-color: #FFF;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
}
.login-form .form-box {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.login-form .company-logo {
    padding-bottom: 20px;
}
.login-form .company-logo img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.login-form .form-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.login-form .form-footer {
    margin-top: auto;
    text-align: center;
    font-size: 0.8rem;
    color: #8D99AE;
    padding: 15px 0;
}
.login-form .form-footer a {
    color: #05997D;
}
.btn-login {
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    padding: 12px 20px;
    border-radius: 20px;
    transition: 0.5s !important;
    border: 1px solid #B01214;
    line-height: 1;
    color: #fff;
    background: #B01214;
}
.btn-login:hover {
    background: #BB1F1F;
    color: #fff !important;
    box-shadow: none !important;
    border: 1px solid #BB1F1F !important;
    text-decoration: none !important;
}
.btn-resetpw {
    color: #8D99AE !important;
    padding: 8px 0;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px!important;
    display: inline-block;
    font-weight: 500;
}
.btn-resetpw:hover {
    text-decoration: underline;
}
.login-form ::-webkit-input-placeholder {
    color: #AAA;
}
.login-form ::-moz-placeholder {
    color: #AAA;
}
.login-form :-ms-input-placeholder {
    color: #AAA;
}
.login-form :-moz-placeholder {
    color: #AAA;
}
@media (max-width: 767px) {
  .login-form {
      background: transparent;
      min-height: auto;
      padding: 40px 15px;
  }
    .login-form .company-logo img {
        max-width: 300px;
        height: auto;
    }
  .login-form .form-box {
      background: #FFF;
      padding: 30px;
      border-radius: 0px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
    .login-form .form-content {
        justify-content: flex-start;
    }
    .login-form .form-footer {
        margin-top: 15px;
    }
}