html,
body {
  height: 100%;
}

body {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  background-color: #f5f5f5;
}

.login-sections {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  min-height: 100vh;
}
.login-section--primary {
    padding-left: 30px;
    padding-right: 30px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    background: #286ef1;
    background-image: url(../images/little-african-american-walk-smiling-holding-colorful-candies.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: none;
}
.login-section--secondary {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  display: flex;
}

.form-signin {
  width: 100%;
  max-width: 360px;
  padding: 15px;
  margin: auto;
}


.form-signin .checkbox {
  font-weight: 400;
}

.form-signin .form-floating:focus-within {
  z-index: 2;
}

.form-signin input[type="email"] {
  margin-bottom: 1rem;
  
}

.form-signin input[type="password"] {
  margin-bottom: 1rem;
}

footer {
  position: fixed;
}


.btn-login {
    position: relative;
    overflow: hidden;
    padding-left: calc(60px + 1rem);
    height: 50px;
    font-size: 17px;
    font-weight: 500;
    white-space: nowrap;
    line-height: 32px;
}
.btn-login-icon {
    text-transform: none !important;
    line-height: 1;
    vertical-align: middle;
    display: inline-block;
    height: 52px;
    width: 60px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    background-color: #0b5ed7;
    position: absolute;
    left: -1px;
    top: -1px;
    background-image: url(../brand/elc-logo-white.svg);
    background-size: 26px;
}

@media (min-width: 768px) {
    .login-sections {
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  }
  .login-section--primary {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
    .login-section--secondary {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
        flex: 1 1 50%;
        display: flex;
        padding-bottom: 4rem;
    }
  footer .left-side {
    
  }
}



/* RESPONSIVE */

@media (max-width: 991.98px) {
    form {
        padding-bottom: 4rem;
    }
    form img {
        max-width: 80%;
    }
    form h1 {
        max-width: 300px;
        margin: 0 auto;
    }
}