.fixed-header,
.pages-header,
.footer,
.copyrights {
  position: fixed;
  display: none;
}

body {
  background: #f6f9fc;
}

.fullscreen-layout {
  min-width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-logo {
  margin-bottom: 30px;
}

.white-card {
  background-color: #fff;
  padding: 30px 61px 15px 61px;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
}

.form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.form-header h1 {
  font-weight: bold;
}

.input {
  padding-top: 0;
}

.text .inputs-style {
  width: 100%;
  padding: 0px 15px;
  border-radius: 0;
  border: 1px solid #4e5381;
  font-size: 20px;
  font-weight: 500;
  color: #75799d;
  height: 45px;
  line-height: 45px;
}

.text .inputs-style::placeholder {
  font-weight: 400;
  font-size: 14px;
}

.pre-input {
  font-size: 15px;
  height: 43px;
  line-height: 44px;
  border-color: #4e5381;
}

.form-group {
  margin-bottom: 16px;
}

.sing-btn {
  margin-left: 0px;
  border: none;
  font-size: 22px;
  font-weight: 700;
  min-width: 245px;
}

.main-btn {
  height: 58px;
  min-width: 270px;
  text-align: center;
  line-height: 58px;
  background: #001243;
  padding: 0px 10px;
  color: #fff;
  border-radius: 0;
  display: inline-block;
  font-size: 20px;
  position: relative;
  box-sizing: border-box;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.16);
  letter-spacing: 0.4px !important;
  min-width: 225px !important;
  font-size: 20px !important;
  height: 48px !important;
  line-height: 48px !important;
}

.main-btn.inactive-btn {
  background: #4e5381;
}

.main-btn.inactive-btn .hover-effect-hover {
  background: #00a63f;
}

@media only screen and (max-width: 992px) {
  .main-btn {
    width: auto;
  }
}

.btn-big {
  min-width: 280px !important;
  font-size: 22px !important;
  height: 58px !important;
  line-height: 58px !important;
}

@media only screen and (max-width: 992px) {
  .btn-big {
    font-size: 18px !important;
    min-width: 250px !important;
    height: 48px !important;
    line-height: 48px !important;
  }
}

@media only screen and (max-width: 576px) {
  .btn-big {
    font-size: 20px !important;
    height: 60px !important;
    line-height: 60px !important;
  }
}

.main-btn:hover {
  color: #fff;
}

.translate-effect {
  transform: translateY(0px);
}

.translate-effect:hover {
  transform: translateY(-2px);
}

.hover-effect {
  position: relative;
  overflow: hidden;
}

.hover-effect span.hover-effect-text {
  z-index: 2;
  position: relative;
  transition: color 0.2s ease-in-out;
}

.hover-effect:hover span.hover-effect-text {
  color: #fff;
}

.hover-effect span.hover-effect-hover {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #04298e;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hover-effect:hover span.hover-effect-hover {
  width: 225%;
  height: 562.5px;
}

.hover-effect:active {
  background-color: #75b23d;
}

.validation-enabled {
  position: relative;
}

.validation-enabled .validation-enabled-error {
  font-size: 14px;
  color: #e41970;
  font-weight: 500;
  margin-bottom: 15px;
}

@media only screen and (min-width: 1200px) {
  .validation-enabled .validation-enabled-error {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 20px;
    width: 24vw;
    min-height: 100%;
    align-items: stretch;
    display: flex;
    margin-bottom: 0;
    font-size: 12px;
  }
}

@media only screen and (min-width: 1400px) {
  .validation-enabled .validation-enabled-error {
    font-size: 14px;
  }
}

.validation-enabled .validation-enabled-error .error-message {
  display: flex;
  align-items: center;
}

@media only screen and (min-width: 1200px) {
  .validation-enabled .validation-enabled-error .error-message::before {
    content: "\f057";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-size: 20px;
    margin-left: 15px;
  }
}

.validation-enabled .validation-enabled-ok {
  font-size: 20px;
  color: #00a63f;
  position: absolute;
  top: 13px;
  left: -9px;
}

@media only screen and (min-width: 992px) {
  .validation-enabled .validation-enabled-ok {
    top: 15px;
    left: -40px;
  }
}

.logged .validation-enabled .validation-enabled-error {
  position: static;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  padding: 10px 0 0;
}

.logged .validation-enabled .validation-enabled-error .error-message:before {
  display: none;
}

.logged .validation-enabled .validation-enabled-error .error-message:after {
  content: "ï—";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-size: 20px;
  margin-left: 15px;
}

.logged .validation-enabled .validation-enabled-ok {
  right: 15px;
}

.text .inputs-style.sub-domain {
  padding-left: 77px;
  text-align: left;
}

.text .inputs-style.sub-domain::placeholder {
  text-align: right;
}

/* Reset Validation */
.validation-enabled .validation-enabled-error {
  position: static !important;
  top: 0;
  left: 100%;
  margin-left: 0 !important;
  width: auto;
  min-height: 100%;
  display: block;
}

.validation-check,
.validation-err {
  position: relative;
}

.error-message {
  background: transparent;
  color: red;
  font-family: inherit;
  padding: 5px 0;
}

.validation-enabled .validation-enabled-error .error-message {
  margin-top: -10px;
  margin-bottom: 15px;
}

.validation-enabled .validation-enabled-error .error-message::before {
  margin-left: 5px !important;
}

.validation-enabled-error,
.validation-enabled-error {
  margin-bottom: 10px !important;
}

.validation-check input.inputs-style,
input.inputs-style.has-success {
  border: 2px solid #6fb92b;
  color: #6fb92b;
}

.validation-err input.inputs-style,
input.has-error.inputs-style {
  border: 2px solid #e2574c;
  color: #e2574c;
}

.validation-enabled i.validation-enabled-ok,
.validation-enabled i.cancel-icon {
  font-size: 17px !important;
  position: absolute !important;
  left: 8px !important;
  top: 14px !important;
}

.validation-check i:first-of-type,
.validation-enabled i.icon-ok {
  color: #6fb92b;
}

.validation-err i:last-of-type,
.validation-enabled i.cancel-icon,
i.color-danger {
  color: #e2574c;
}

.position-relative {
  position: relative;
}

.toggle-password {
  position: absolute;
  top: 0;
  left: 0;
  padding: 13px;
  font-size: 18px;
  color: #4e5381;
  cursor: pointer;
}

.spacing .toggle-password,
.spacing .toggle-password {
  left: 20px;
}

.modules-container {
  padding-top: 30px;
}

.module-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size:18px;
  font-weight:bold;
}

.module-item img {
  width: 18px;
  height: auto;
  text-align: center;
  margin-left: 10px;
}

.module-item h6 {
  font-size: 16px;
  color: #005aaa;
}

.module-item h6:hover {
  color: #00aeef;
}

.fixed-btn-wts {
  bottom: 15px !important;
  right: unset !important;
  left: 20px !important;
}

@media only screen and (max-width: 768px) {
  .pages-view {
    padding-top: 15px;
  }
  .top-logo {
    margin-right: 16px;
    margin-bottom: 15px;
  }

  .white-card {
    padding: 15px;
  }

  .form-header {
    justify-content: center;
    flex-direction: column;
  }

  .pre-input {
    left: 5px;
  }

  .subdomain {
    font-size: 13px;
  }

  .text .inputs-style {
    font-size: 14px;
  }
}
