body {
  background: url("../images/login-bg.png") no-repeat center center fixed;
  background-size: cover;
  background-position: bottom;
  overflow-x: hidden;
}

#banner {
  background-color: rgba(225, 209, 39, 0.9);
  height: 150px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  border-bottom: 5px solid white;
  padding-top: 10px;
}
#banner img {
  max-width: 100px;
}
#banner h2 {
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 30px;
  font-weight: lighter;
  color: #58423E;
  padding: 0;
  margin: 0;
}

#registrationButtons {
  padding-top: 10px;
}

#agent1 {
  height: 200px;
  position: absolute;
  bottom: 0px;
  right: calc(50% - 550px);
}

#agent2 {
  height: 200px;
  position: absolute;
  bottom: 0px;
  right: calc(50% + 400px);
}

#clouds {
  position: relative;
  /* Allows clouds to have absolute positioning */
  height: 175px;
  /* Adjust height for cloud placement */
}

.cloud {
  position: absolute;
  background: url("../images/cloud1.png") no-repeat center center fixed;
  /* Position clouds within the container */
  width: 300px;
  height: 160px;
  opacity: 0.7;
  /* Adjust opacity for cloud effect */
  -webkit-animation-name: moveClouds;
          animation-name: moveClouds;
  /* Reference the animation */
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  /* Animate forever */
}

#clouds :nth-child(1) {
  -webkit-animation: moveClouds 100s linear infinite;
          animation: moveClouds 100s linear infinite;
}

#clouds :nth-child(2) {
  background: url("../images/cloud2.png") no-repeat center center fixed;
  -webkit-animation: moveClouds 100s linear infinite;
          animation: moveClouds 100s linear infinite;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  top: 20%;
  left: -10%;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

#clouds :nth-child(3) {
  background: url("../images/cloud3.png") no-repeat center center fixed;
  -webkit-animation: moveClouds 100s linear infinite;
          animation: moveClouds 100s linear infinite;
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
  top: 30%;
  left: -20%;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

#clouds :nth-child(4) {
  background: url("../images/cloud4.png") no-repeat center center fixed;
  -webkit-animation: moveClouds 100s linear infinite;
          animation: moveClouds 100s linear infinite;
  -webkit-animation-delay: 30s;
          animation-delay: 30s;
  top: 50%;
  left: -30%;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

#clouds :nth-child(5) {
  background: url("../images/cloud5.png") no-repeat center center fixed;
  -webkit-animation: moveClouds 100s linear infinite;
          animation: moveClouds 100s linear infinite;
  -webkit-animation-delay: 45s;
          animation-delay: 45s;
  top: 60%;
  left: -40%;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

@-webkit-keyframes moveClouds {
  0% {
    left: -15%;
  }
  100% {
    left: 100%;
  }
}

@keyframes moveClouds {
  0% {
    left: -15%;
  }
  100% {
    left: 100%;
  }
}
#airplane {
  position: absolute;
  top: 9%;
  width: 400px;
  height: 160px;
  opacity: 1;
  -webkit-animation: moveAirplane 100s linear infinite;
          animation: moveAirplane 100s linear infinite;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes moveAirplane {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

@keyframes moveAirplane {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}
.shadow {
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
          box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.login-container {
  position: relative;
  max-width: 900px;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.5);
}
@media (max-width: 767px) {
  .login-container {
    margin: 0 25px;
  }
}
.login-container .logo-image {
  width: 150px;
  margin: 0 auto;
  display: block;
  margin-bottom: 10px;
}
.login-container .wrap-content {
  margin: 20px 0 0;
}

.login-form-seprator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 767px) {
  .login-form-seprator {
    height: 50px;
  }
}
.login-form-seprator #borderBetween {
  border-left: 1px solid #ccc;
  height: 100%;
}
@media (max-width: 767px) {
  .login-form-seprator #borderBetween {
    border-bottom: 1px solid #ccc;
    width: 100%;
    height: unset;
    border-left: 0px;
  }
}
.login-form-seprator #orLabel {
  position: absolute;
  border: 1px solid #ccc;
  background: white;
  padding: 20px;
  border-radius: 99px;
}
@media (max-width: 767px) {
  .login-form-seprator #orLabel {
    padding: 10px;
  }
}

.login-form-left div#buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.login-form-left .login-buttons {
  background-color: rgba(255, 255, 255, 0.4) !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  height: 45px;
  line-height: 45px;
  text-transform: none;
  margin: 20px auto;
  display: block;
  text-align: left;
  position: relative;
  padding: 0 16px;
  padding-left: 85px;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  overflow: hidden;
  cursor: pointer;
}
.login-form-left .login-buttons:hover {
  background-color: rgba(158, 158, 158, 0.2) !important;
}
.login-form-left .login-buttons img {
  width: 22px;
  position: absolute;
  left: 30px;
  top: 11px;
}

.login-form-right .btn-success {
  background-color: #53b602 !important;
}
.login-form-right #loginForm {
  padding: 10%;
}
.login-form-right h3 {
  padding: 0 10%;
  text-align: left;
  color: #000000;
}
.login-form-right .btnSubmit {
  font-weight: 600;
  color: #0062cc;
  background-color: #fff;
}
.login-form-right .ForgetPwd {
  margin: 20px auto;
  color: #3f93d8 !important;
  text-decoration: none;
}
