@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}
input:focus::-webkit-input-placeholder {
  color: transparent;
}
input:focus:-moz-placeholder {
  color: transparent;
}
input:focus::-moz-placeholder {
  color: transparent;
}
input:focus:-ms-input-placeholder {
  color: transparent;
}
input::-webkit-input-placeholder {
  color: #999999;
}
input:-moz-placeholder {
  color: #999999;
}
input::-moz-placeholder {
  color: #999999;
}
input:-ms-input-placeholder {
  color: #999999;
}
.limiter {
  width: 100%;
  margin: 0 auto;
}
.container-login100 {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #f2f2f2;
}
.wrap-login100 {
  width: 100%;
  background: #fff;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex-direction: row-reverse;
}
/*==================================================================
[ login more ]*/
.login100-more {
  width: calc(100% - 550px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.login100-more::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
}
/*==================================================================
[ Form ]*/
.login100-grid {}
.login100-form .form-control, .login100-form .form-select {
  padding: 8px 2px;
  font-size: 14px;
  border-radius: 0px;
  border: 0;
  border-bottom: 1px solid #ccc;
}
.login100-form .form-control:focus, .login100-form .form-select:focus {
  box-shadow: none !important;
}
.login100-form {
  width: 550px;
  min-height: 100vh;
  display: block;
  background-color: #fff;
  padding: 123px 55px 123px 55px;
  position: relative;
}
.right-arrow-login {
  position: absolute;
  right: 549px;
  z-index: 9;
  height: 100%;
}
.login100-form-title {
  width: 100%;
  display: block;
  font-size: 30px;
  color: #185ABD;
  line-height: 1.2;
  text-align: left;
  font-weight: 600;
}
/*==================================================================
[ Restyle Checkbox ]*/
.input-checkbox100 {
  display: none;
}
.label-checkbox100 {
  font-size: 13px;
  color: #726f6f;
  line-height: normal;
  display: block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
}
.label-checkbox100::before {
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 13px;
  color: transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  background: #fff;
  border: 1px solid #6675df;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.input-checkbox100:checked + .label-checkbox100::before {
  color: #6675df;
}
.txt1 {
  color: #000;
  text-decoration: none;
  font-size: 13px;
}
/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.login100-form-btn {
  background-image: linear-gradient(to right, #1554b1, #108d98, #1554b1, #0f8e98);
  box-shadow: 0 6px 13px 0 rgb(69 85 107 / 34%);
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  height: 45px;
  text-align: center;
  border: none;
  margin-bottom: 2rem;
  background-size: 300% 100%;
  border-radius: 50px;
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.login100-form-btn:hover {
  background-position: 100% 0;
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.square {
  width: 50px;
  height: 50px;
  /* background: grey; */
  transform: rotateY(45deg);
  animation: rotateAnimation 1s linear infinite;
  position: absolute;
  right: 0px;
  left: 150px;
  margin: auto;
  bottom: 42%;
}
@keyframes rotateAnimation {
  from {
    transform: rotateY(45deg);
  }
  to {
    transform: rotateY(225deg);
  }
}


.light-blink {
    border-radius: 2px 28px 8px 30px;
    width: 13px;
    height: 10px;
    position: absolute;
    right: 0px;
    left: 254px;
    margin: auto;
    bottom: 18.3%;
	background: rgb(255 246 217 / 60%);
    animation: blink-1 1.2s infinite;
}
 
 
 
@keyframes blink-1 {
  50% {
    box-shadow: 0px 0px 50px #fff, 0px 0px 50px #fff, 0px 0px 50px #fff, 0px 0px 50px #fff, 0px 0px 50px #fff ;
  }
  100% {
    box-shadow: none;
  }
}



.copyright-login {
  text-align: center;
  font-size: 12px;
  padding: 0rem 1rem;
}
.copyright-login a {
  color: #000;
  text-decoration: none
}
.copyright-login a:hover {
  color: dodgerblue;
}
.login-data {
  text-align: center;
  display: block;
  margin: auto;
  width: 690px;
}
.login-data img {
  width: 100%;
}
.login-data p {
  color: #fff;
  font-size: 15px;
  padding: 0rem 4rem;
  text-align: left;
  line-height: normal;
  margin-top: -1rem;
}
.pos-bot {
  position: relative;
  top: 0;
  right: 0px;
  left: 0px;
  margin: auto;
  display: flex;
  width: 100%;
  justify-content: center;
}
ul.list-unstyled li {
  margin-top: 0px;
  margin-right: 0px !important;
  width: 20%;
}
ul.list-unstyled li:first-child {}
ul.list-unstyled li a {
  display: block;
  text-align: center;
  color: #484747;
  padding: 0px 5px;
  line-height: normal;
}
ul.list-unstyled li a span {
  font-weight: 600;
}
.login-fancy h3 {
  font-size: 25px;
  font-weight: 700;
}
ul.list-unstyled li a aside {
  height: 50px;
  width: 50px;
  border-radius: 100px;
  margin: 0px auto;
  background-color: rgb(255 255 255);
  margin-bottom: 10px;
  display: flex;
  transition: linear 0.2s;
  align-items: center;
  justify-content: center;
}
ul.list-unstyled li a aside::after {
  content: "";
  background-color: transparent;
  border: 1px solid rgb(255 255 255 / 45%);
  height: 60px;
  width: 60px;
  position: absolute;
  border-radius: 100px;
  z-index: -1;
}
ul.list-unstyled li a aside img {
  height: 30px;
  width: auto;
}
ul.list-unstyled li a aside i {}
ul.list-unstyled li a span {
  display: block;
  font-size: 12px;
  color: #fff;
  font-weight: 400;
}
ul.list-unstyled li a:hover aside {
  transform: scale(1.11);
}
/*------------------------------------------------------------------
[ Responsive ]*/
@media (max-width: 1360px) {
  .login100-form {
    padding: 50px 55px 13px 55px;
  }
  .login-data p {
    font-size: 12px;
    padding: 0rem 3rem;
  }
  .copyright-login {
    font-size: 11px;
    padding: 0rem 0rem;
  }
  .square {
    width: 40px;
    height: 40px;
    bottom: 45%;
  }
}
@media (max-width: 992px) {
  .wrap-login100 {
    flex-direction: column-reverse;
  }
  .copyright-login {
    text-align: center;
    font-size: 12px;
    padding: 0rem 0rem;
    margin: 0px;
  }
  .label-checkbox100 {
    font-size: 12px;
    padding-left: 22px;
  }
  .txt1 {
    font-size: 12px;
  }
  .label-checkbox100::before {
    width: 14px;
    height: 14px;
  }
  .login100-more {
    width: 100%;
    height: 200px;
  }
  .login100-form {
    padding: 20px;
    width: 100%;
    min-height: auto;
  }
  .login100-form .mb-4 {
    margin-bottom: 1rem !important;
  }
  .login100-form .mb-5 {
    margin-bottom: 1.5rem !important;
  }
  .right-arrow-login {
    display: none;
  }
  .login100-form-title {
    font-size: 20px;
    text-align: center;
  }
  .login-data {
    width: 100%;
  }
  .pos-bot {
    display: none;
  }
  .login-data p {
    display: none;
  }
  .square {
    width: 20px;
    height: 20px;
    bottom: 45%;
    left: 50px;
  }
  .login100-form .form-control, .login100-form .form-select {
    padding: 5px 2px;
    font-size: 12px;
  }
  .login100-form-btn {
    font-size: 14px;
    height: 40px;
    margin-bottom: 1rem;
  }
}