* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fff;
}
.nav_bar_bg {
  background: #f9f9f9;
}
/* ==================== Transition ==================== */
.fade_page {
  animation: fade 0.3s linear;
}

@keyframes fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
/* ==================== Login Form ==================== */
.login_container {
  margin-top: 150px;
}

.wrap-input100 {
  position: relative;
  width: 100%;
  z-index: 1;
  margin-bottom: 20px;
}

.input100 {
  font-size: 15px;
  line-height: 1.5;
  color: #666666;
  display: block;
  width: 100%;
  background: #f9f9f9;
  height: 50px;
  border-radius: 10px;
  padding: 0 30px 0 68px;
}

.focus-input100 {
  display: block;
  position: absolute;
  border-radius: 10px;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 0px 0px;
  color: #e60000;
}

.input100:focus + .focus-input100 {
  -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
  animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 70px 25px;
    opacity: 0;
  }
}

@keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 70px 25px;
    opacity: 0;
  }
}

.symbol-input100 {
  font-size: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 35px;
  pointer-events: none;
  color: #666666;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.password_eye,
.new_password_eye,
.retype_password_eye {
  font-size: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  border-radius: 10px;
  bottom: 0;
  right: 35px;
  float: right;
  height: 100%;
  cursor: pointer;
  color: #666666;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input100:focus + .focus-input100 + .symbol-input100 {
  color: #e60000;
  padding-left: 28px;
}

.input100 {
  font-family: Poppins-Medium;
  font-size: 20px;
  line-height: 1.5;
  color: #666666;

  display: block;
  width: 100%;
  background: #f9f9f9;
  height: 50px;
  border-radius: 10px;
  padding: 0 30px 0 68px;
}

.login-input {
  outline: none;
  border: none;
}

.login-input:focus {
  border-color: transparent !important;
}

.login-input:focus::-webkit-input-placeholder {
  color: transparent;
}

.login-input:focus:-moz-placeholder {
  color: transparent;
}

.login-input:focus::-moz-placeholder {
  color: transparent;
}

.login-input:focus:-ms-input-placeholder {
  color: transparent;
}

.login-input::-webkit-input-placeholder {
  color: #999999;
}

.login-input:-moz-placeholder {
  color: #999999;
}

.login-input::-moz-placeholder {
  color: #999999;
}

.login-input:-ms-input-placeholder {
  color: #999999;
}
.login-btn {
  border-radius: 10px;
}

/* ==================== Menu Navigation ==================== */
@media (min-width: 992px) {
  .dropdown-menu .dropdown-toggle:after {
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
  }
  .dropdown-menu .dropdown-menu {
    margin-left: 0;
    margin-right: 0;
  }
  .dropdown-menu li {
    position: relative;
  }
  .nav-item .submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
  }
  .nav-item .submenu-left {
    right: 100%;
    left: auto;
  }
  .dropdown-menu > li:hover {
    background-color: #f1f1f1;
  }
  .dropdown-menu > li:hover > .submenu {
    display: block;
  }
}
