.login-parent {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
}

.login-decoration {
  width: 50%;
  background-color: #4E9F3D;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(/assets/img/bg4.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; 
}

.login-decoration > .overlay {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(/assets/img/main-hero.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.login-decoration > .overlay > .illustration {
  width: 50%;
  margin-bottom: 2rem;
  filter: drop-shadow(rgba(0, 0, 0, 0.24) 0px 3px 8px);
}

.login-decoration > .overlay > .title {
  text-align: center;
  font-size: xx-large;
  color: var(--light);
  width: 50%;
  text-transform: capitalize;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}

.content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* background-image: url(../assets/img/bg_shapes.png); */
  background-size: 100%;
  background-position: center center;
}

.content > .logo {
  width: 50%;
  padding: 1rem 0;
}

.content > .logo > img {
  width: 30%;
}

.login-block {
  width: 50%;
}

.login-block label {
  color: #444;
}

.login-block .title {
  font-size: 2rem;
  color: #444;
  margin-bottom: 1rem;
}
.login-block > form > .form-group > .input > .form-control {
  padding: 1.5rem;
}

.login-block > form > .form-group > .v-btn {
  box-shadow: rgba(10, 22, 50, .24);
  padding: .4rem;
}

.login-block .forgot-pwd {
  color: #666;
}

@media (max-width: 810px) {
  .login-parent {
    flex-direction: column;
  }
  .login-decoration,
  .content {
    width: 100%;
  }

  .login-decoration > .overlay {
    background: none;
    height: 15vh;
  }

  .login-decoration > .overlay > .illustration {
    display: none;
  }
  .content {
    flex-grow: 1;
  }
}

@media (max-width: 576px) {
  .login-parent {
    flex-direction: column;
  }
  .login-decoration,
  .content {
    width: 100%;
  }

  .login-decoration {
    box-shadow: none;
    background-position: bottom;
    background-size: cover;
  }

  .login-decoration > .overlay {
    background: none;
    padding: 2rem;
  }

  .login-decoration > .overlay > .title {
    font-size: 1rem;
    width: 100%;
  }

  .login-decoration > .overlay > .illustration {
    display: none;
  }

  .login-decoration > .overlay > .title > br {
    display: none;
  }

  .login-block {
    width: 100%;
    padding: 2rem;
    padding-top: 1rem;
  }
  .login-block > form > .title {
    font-size: large;
    text-align: center;
  }
  .content {
    flex-grow: 1;
  }
  .content > .logo {
    width: 100%;
    padding: 2rem;
    padding-bottom: 0;
    text-align: center;
  }
  .content > .logo > img {
    width: 50%;
  }
}
