.login-page body,
.login-page html {
  height: 100%;
}

.login-page a {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0;
  transition: all 0.4s;
}

.login-page a:focus {
  outline: none !important;
}

.login-page a:hover {
  text-decoration: none;
  color: #fff;
}

.login-page h1,
.login-page h2,
.login-page h3,
.login-page h4,
.login-page h5,
.login-page h6,
.login-page p {
  margin: 0;
}

.login-page p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

.login-page ul,
.login-page li {
  margin: 0;
  list-style-type: none;
}

.login-page input,
.login-page textarea {
  outline: none;
  border: none;
}

.login-page input:focus,
.login-page textarea:focus {
  border-color: transparent !important;
}

.login-page input::placeholder,
.login-page textarea::placeholder {
  color: #999;
}

.login-page button {
  outline: none !important;
  border: none;
  background: none;
}

.login-page button:hover {
  cursor: pointer;
}

.login-page iframe {
  border: none !important;
}

.login-page .txt1 {
  font-size: 16px;
  color: #ccc;
  line-height: 1.4;
}

.login-page .bo1 {
  border-bottom: 1px solid #999;
}

.login-page .hov1:hover {
  border-color: #d33f8d;
}

.login-page .limiter {
  width: 100%;
  margin: 0 auto;
}

.login-page .container-login100 {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.login-page .container-login100::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, #005bea, #00c6fb);
  opacity: 0.9;
}

.login-page .wrap-login100 {
  width: 390px;
  background: none;
}

.login-page .login100-form {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.login-page .login100-form-title {
  font-size: 24px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  width: 100%;
}

.login-page .login100-form-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

.login-page .login100-form-avatar img {
  width: 100%;
}

.login-page .wrap-input100 {
  position: relative;
  width: 100%;
  z-index: 1;
}

.login-page .input100 {
  font-size: 15px;
  line-height: 1.2;
  color: #333;
  display: block;
  width: 100%;
  background: #fff;
  height: 50px;
  border-radius: 25px;
  padding: 0 30px 0 53px;
}

.login-page .focus-input100 {
  display: block;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  box-shadow: 0 0;
  color: rgba(0, 91, 234, 0.6);
}

.login-page .input100:focus + .focus-input100 {
  animation: anim-shadow 0.5s ease-in-out forwards;
}

@keyframes anim-shadow {
  to {
    box-shadow: 0 0 80px 30px;
    opacity: 0;
  }
}

.login-page .symbol-input100 {
  font-size: 15px;
  color: #999;
  display: flex;
  align-items: center;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 30px;
  pointer-events: none;
  transition: all 0.4s;
}

.login-page .input100:focus + .focus-input100 + .symbol-input100 {
  color: #00c6fb;
  padding-left: 23px;
}

.login-page .container-login100-form-btn {
  width: 100%;
  display: flex;
  justify-content: center;
}

.login-page .login100-form-btn {
  font-size: 15px;
  line-height: 1.5;
  color: #e0e0e0;
  width: 100%;
  height: 50px;
  border-radius: 25px;
  background: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
  transition: all 0.4s;
  position: relative;
  z-index: 1;
}

.login-page .login100-form-btn::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #005bea, #00c6fb);
  transition: all 0.4s;
  opacity: 0;
}

.login-page .login100-form-btn:hover {
  background: none;
  color: #fff;
}

.login-page .login100-form-btn:hover::before {
  opacity: 1;
}

.login-page .btn-face,
.login-page .btn-google {
  font-size: 16px;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% - 10px) / 2);
  height: 40px;
  border-radius: 3px;
  border: 1px solid #e6e6e6;
  background-color: #fff;
  transition: all 0.4s;
}

.login-page .btn-face {
  color: #3b5998;
}

.login-page .btn-face i {
  font-size: 20px;
  margin-right: 10px;
}

.login-page .btn-google {
  color: #555;
}

.login-page .btn-google img {
  width: 19px;
  margin-right: 10px;
}

.login-page .btn-face:hover,
.login-page .btn-google:hover {
  border-color: #d33f8d;
}

.login-page .validate-input {
  position: relative;
  direction: ltr;
}
.login-page .validate-input input {
  text-align: right;
}

.login-page .alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 14px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
  pointer-events: none;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s;
}

.login-page .alert-validate::after {
  content: "\f06a";
  font-family: FontAwesome;
  position: absolute;
  color: #c80000;
  font-size: 15px;
  top: 50%;
  transform: translateY(-50%);
  right: 13px;
}

.login-page .alert-validate:hover::before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .login-page .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 576px) {
  .login-page .wrap-login100 {
    padding-top: 80px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

////////////////

.login-page #default-captcha-domainchecker p {
  display: none !important;
}

.login-page .text-center.row.justify-content-center {
  width: 100% !important;
}

.login-page .btn.btn-return-to-admin {
  display: none !important;
}

.login-page #fullpage-overlay {
  display: none !important;
}

.login-page .wrap-login100.p-t-190.p-b-30 {
  padding-top: 5% !important;
}

.login-page .text-center.w-full.p-t-25.p-b-230 {
  padding-bottom: 20% !important;
}

.login-page .container {
  width: 100% !important;
  max-width: 100%;
  padding: 0 !important;
  margin: 0 !important;
}

.login-page .login100-form-avatar img {
  background-color: #fff;
  padding: 18px 20px 20px 20px;
}

.login-page #main-body {
  padding: 0 !important;
  margin: 0 !important;
}

.login-page html,
.login-page body {
  overflow-x: hidden !important;
}

.login-page .alert {
  font-size: 14px !important;
}
.card {
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  position: inherit !important;
  border: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
}
.card-body {
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  position: inherit !important;
  border: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
}