/* CSS to hide elements on mobile devices */
@media only screen and (max-width: 767px) {
  .login-container {
    display: none;
  }
  .loginFeatureImage {
    display: none !important;
  }
  footer {
    display: none;
  }
  header {
    display: none;
  }
  .hide-on-mobile {
    display: none !important;
  }
  input {
    padding: 10px;
    margin-bottom: 1em;
    border: 1px solid #ccc !important;
    border-radius: 5px !important;
  }
  .forgot-password {
    text-decoration: underline !important;
    display: block;
    text-align: center;
  }
  .btn-blue {
    background-color: #0057B8;
    border: 2px solid #0057B8;
    color: #fff;
    width: 100%;
    height: 48px;
    border-radius: 28px;
    padding: 0;
  }
  .btn-blue:hover {
    background-color: #00418a;
    border-color: #00418a;
    color: #fff !important;
  }
}
