/*.......For Scrollbar........*/
/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #dcdbdb;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #b9b7b7;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #888;
}

/* .......For No margin and no Pading.......... */
.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.clear-float {
  clear: both;
}

/* .......For borders.......... */
.border-bottom {
  border-bottom: 1px solid #a8a7a7;
}

.border-top {
  border-top: 1px solid #a8a7a7;
}

.border-left {
  border-left: 1px solid #a8a7a7;
}

.border-right {
  border-right: 1px solid #a8a7a7;
}

body {
  user-select: none;
  -moz-user-select: none; /* Firefox */
  -webkit-user-select: none; /* Safari */
  -webkit-touch-callout: none; /* iOS Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -ms-user-select: none; /* Internet Explorer/Edge */
  /* background: #ffffff !important; */
  height: 100vh;
}

/* .............Entire layout body for login............. */
.wrapper-main {
  background: #f9f9f9;
  height: 100%;
  width: 100%;
}

.login-footer {
  color: #535f70;
}
.login-box {
  left: 50%;
  max-height: 100vh;
  max-width: 360px;
  position: fixed;
  text-align: center;
  top: 16%;
  transform: translate(-50%, 0);
  width: 100%;
  /*input {
          color: #636060;
          background: none;
          font-size: 14px;
          outline: none;
          width: 100%;
          border: none;
          padding: 5px 12px;
      }*/
}
.login-box h5,
.login-box h6 {
  margin: 0;
}
.login-box h2,
.login-box h3,
.login-box h4 {
  margin: 0 0 8px;
}
.login-box p {
  color: #535f70;
  margin: 0 0 16px;
}

.login-form {
  background: #fcfcfc;
  border: 2px solid #e2e2e6;
  border-radius: 4px;
  margin: 12px 0;
  padding: 24px;
  width: 100%;
}

/*.............Inside Left Column / Slider Column............*/
/* .main-content .content-body .left{ border-right:1px solid #ffcfbd;} */
.main-content .content-body .left .slideshow-container {
  height: 100%;
  overflow: hidden;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}

.main-content .content-body .left .slideshow-container .mySlides {
  display: none;
  height: -webkit-fill-available;
  animation: fadein 1s;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.main-content .content-body .left .slideshow-container .w3-button {
  opacity: 0.3;
}

/*.............Inside Right Column / Login Column............*/
/*.............Login Header............*/
.login-box .login-header {
  display: grid;
  place-items: center;
  height: 30%;
}

.login-box .login-header .inside-header {
  color: #ff8f40;
}

.login-box img {
  height: 32px;
}

.login-input {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.login-box .login-input .forcheckbox {
  text-align: center;
  font-size: 15px;
  width: 55%;
  margin: auto;
  margin-bottom: 5%;
  margin-top: 1%;
}

.login-box .login-input .forcheckbox .logincheckbox {
  cursor: pointer;
  width: 7%;
  margin-right: -5px;
}

.login-box label {
  color: #ff8356;
  cursor: pointer;
}

.login-box .login-input .forpassword,
.forusername,
.forCaptcha,
.resetpassword {
  align-items: center;
  background: none;
  border: 1px solid #73777f;
  border-radius: 4px;
  color: #4283fb;
  display: flex;
  justify-content: flex-end;
  outline: none;
  padding: 0 8px 0 0;
  width: 100%;
}
.login-box .login-input .forpassword input,
.forusername input,
.forCaptcha input,
.resetpassword input {
  color: #636060;
  background: none;
  font-size: 14px;
  outline: none;
  width: 100%;
  border: none;
  padding: 5px 12px;
}

.login-box .login-input .forCaptcha {
  display: grid;
  justify-content: center;
  border: none;
}

.login-box .login-input .forpassword i {
  cursor: pointer;
  color: #1b1b1b;
  opacity: 0.3;
  transition: 0.2s;
}

.forpassword button {
  background: none;
  border: none;
  padding: 0;
}

.forgotpassword {
  height: 67.5% !important;
}/*# sourceMappingURL=login.css.map */