body {
  padding: 0;
  height: 100vh !important;
  overflow: hidden;
  font-size: 14px;
}
body.swal2-height-auto{
  height: 100vh !important;
}
form {
  width: 100%;
  height: 100%;
}

.log-section {
  background: #000c4b;
  width: 100%;
  height: 100%;
  position: relative;
  background: url("../img/bg-login.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.log-box {
  position: absolute;
  max-width: 330px;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  max-height: 480px;
  padding: 7px;
  background: #fff;
  border-radius: 5px;
  z-index: 1;
  box-shadow: 0px 29px 41px rgb(0 0 0 / 11%);
}

.log-in {
  position: relative;
  background: #fff;
  width: 100%;
  height: 100%;
  padding: 15px 18px;
}

.input-body {
  margin-bottom: 35px;
}

.inp {
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 300px;
  border-radius: 3px;
}

.inp .label {
  position: absolute;
  top: 0px;
  left: 12px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  pointer-events: none;
}

.inp .focus-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  z-index: -1;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left;
  transform-origin: left;
}

.inp input,
.inp select,
.inp textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border: 0;
  font-family: inherit;
  padding: 10px 12px 0 12px;
  height: 36px;
  font-size: 15px;
  font-weight: 400;
  background: #fff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  color: #000;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

.inp input:hover,
.inp select:hover,
.inp textarea:hover {
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.5);
}

.inp input:not(:placeholder-shown) + .label,
.inp select:not(:placeholder-shown) + .label,
.inp textarea:not(:placeholder-shown) + .label {
  color: rgba(0, 0, 0, 0.61);
  top: -2px;
  background-color: #fff;
  -webkit-transform: translate3d(0, -12px, 0) scale(0.75);
  transform: translate3d(0, -12px, 0) scale(0.75);
}

.inp input:focus,
.inp select:focus,
.inp textarea:focus {
  outline: none;
  box-shadow: inset 0 -2px 0 #087bff;
}

.inp input:focus + .label,
.inp select:focus + .label,
.inp textarea:focus + .label {
  color: #087bff;
  top: -2px;
  background: #fff;
  -webkit-transform: translate3d(0, -12px, 0) scale(0.75);
  transform: translate3d(0, -12px, 0) scale(0.75);
}

.inp input:focus + .label + .focus-bg,
.inp select:focus + .label + .focus-bg,
.inp textarea:focus + .label + .focus-bg {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.input-btn {
  width: 100%;
  display: block;
  padding-top: 10px;
  padding-top: 10px;
}

.input-btn .btns {
  width: 100%;
  display: block;
  padding: 10px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background-color: #087bff;
  border: 2px solid #fff;
  cursor: pointer;
  text-align: center;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  transition: 0.5s ease;
}

.input-btn .btns:hover {
  background-color: #106ad2;
  transition: 0.5s ease;
}

.input-btn p {
  position: absolute;
  left: 0;
  right: 0;
  font-size: 14px;
  bottom: 9px;
  margin: auto;
  text-align: center;
  color: #424242ee;
}

.logo img {
  max-height: 50px;
  width: auto;
  margin-bottom: 15px;
}

.log-chk {
  font-size: 16px;
}

.log-chk input[type="checkbox"] {
  margin-right: 10px;
  width: 15px;
  height: 15px;
}

:focus {
  outline: none !important;
}

@media (max-width: 797px) {
  .slide-box {
    display: none;
  }

  .log-box {
    max-width: 92%;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
  }

  .bg-grass {
    width: 100%;
  }
}

.f-xs {
  font-size: 10px;
}

.f-sm {
  font-size: 12px;
}

.f-md {
  font-size: 14px;
}

#showPass {
  position: absolute;
  right: 3px;
  top: 3px;
  font-size: 17px;
  color: #adadad;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
  transition: 0.3s ease;
}
#password:focus + .label + .focus-bg + #showPass {
  opacity: 1;
  transition: 0.3s ease;
}
