.login-block {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 50px 0;
  background: #18324D;
  background: -webkit-linear-gradient(to bottom, #0f70b7, #3a5a85);
  background: linear-gradient(to bottom, #0f70b7, #3a5a85);
}

.banner-sec {
  min-height: 500px;
  border-radius: 0 10px 10px 0;
  padding: 0;
}

.banner-sec img {
  object-fit: cover;
  object-position: left;
  border-radius: 0 10px 10px 0;
}

.container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 15px 20px 0px rgba(0,0,0,0.1);
}

.carousel-inner {
  border-radius: 0 10px 10px 0;
}

.carousel-caption {
  text-align: left;
  left: 5%;
}

.login-sec {
  padding: 50px 30px;
  position: relative;
}

.login-sec .copy-text {
  position: absolute;
  width: 80%;
  bottom: 20px;
  font-size: 13px;
  text-align: center;
}

.login-sec .copy-text i {
  color: #FEB58A;
}

.login-sec .copy-text a {
  color: #E36262;
}

.login-sec h2 {
  margin-bottom: 30px;
  font-weight: 800;
  font-size: 30px;
  color: #0f70b7;
}

.login-sec h2:after {
  content: "";
  width: 100px;
  height: 5px;
  background: #0f70b7;
  display: block;
  margin-top: 20px;
  border-radius: 3px;
  margin-left: auto;
  margin-right: auto
}

.btn-login {
  background: #0f70b7;
  color: #ffffff;
  font-weight: 600;
}

.btn-login:hover, .btn-login:active, .btn-login.active, .btn.disabled, .btn.btn[disabled] {
  background: #3a5a85;
  color: #ffffff;
}

.banner-text {
  width: 70%;
  position: absolute;
  bottom: 40px;
  padding-left: 20px;
}

.banner-text h2 {
  color: #fff;
  font-weight: 600;
}

.banner-text h2:after {
  content: "";
  width: 100px;
  height: 5px;
  background: #ffffff;
  display: block;
  margin-top: 20px;
  border-radius: 3px;
}

.banner-text p {
  color: #ffffff;
}

@media (max-width: 767px) {
  .login-block {
    height: unset;
    display: block;
    align-items: unset;
  }

  .banner-sec, .banner-sec img {
    border-radius: 0 0 10px 10px;
  }
}

@media (max-width: 575px) {
  .login-block {
    padding: 30px 20px;
  }
}