@import url("https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap");
:root {
  --c1: #5522BF;
  --font-1: "PT Sans", sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-1);
  font-size: 14px;
}
body a {
  text-decoration: none;
}
body .btn-1 {
  position: relative;
  width: 100%;
  background: var(--c1);
  color: #fff;
  padding: 0 18px;
  border: none;
  border-radius: 2px;
  text-transform: none;
  font-size: 14px;
  line-height: 40px;
}
body section.authentication .auth-grid {
  display: grid;
  grid-template-columns: 1fr 450px;
  height: 100%;
  min-height: 100vh;
  position: relative;
}
body section.authentication .auth-grid .imgs-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-image: url(../../images/bg-auth.jpg);
  background-size: cover;
  overflow: hidden;
}
@media (max-width: 767px) {
  body section.authentication .auth-grid .imgs-layer {
    background-image: url(../../images/bg-auth-xs.jpg);
    background-position: center;
  }
}
body section.authentication .auth-grid .auth-left {
  display: flex;
  height: 100%;
  background-color: #1D333F;
}
body section.authentication .auth-grid .auth-left .holder {
  margin: auto;
  max-width: 500px;
  padding: 25px;
  position: relative;
  border-radius: 6px;
  background: rgba(169, 189, 202, 0.8);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
          backdrop-filter: saturate(180%) blur(10px);
  border-radius: 8px;
  overflow: hidden;
  -o-box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.42), 0 3px 20px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.42), 0 3px 20px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
  border: 2px solid #aaa9a9;
}
body section.authentication .auth-grid .auth-left .holder .logo {
  text-align: center;
}
body section.authentication .auth-grid .auth-left .holder .logo img {
  width: 100%;
  max-width: 250px;
  margin: 0 auto 30px;
}
body section.authentication .auth-grid .auth-left .holder .content .title h4 {
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
}
body section.authentication .auth-grid .auth-left .holder .content .title p {
  max-width: 80%;
  margin: 10px auto 25px;
  text-transform: uppercase;
}
body section.authentication .auth-grid .auth-left .holder .content .form-group .field {
  margin-bottom: 10px;
  border: 1px solid #222;
  color: #2a2f32;
  font-size: 14px;
  padding-left: 10px;
  height: 40px;
  width: 100%;
  border-radius: 3px;
}
body section.authentication .auth-grid .auth-left .holder .content .remember {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 10px;
  margin: 0 0 30px;
  font-size: 13px;
}
body section.authentication .auth-grid .auth-left .holder .content .remember a {
  color: var(--c1);
}
body section.authentication .auth-grid .auth-left .holder .content .btn-area {
  text-align: center;
  margin: 10px 0;
}
body section.authentication .auth-grid .auth-left .holder .content .btn-area .btn-1 {
  margin-bottom: 5px;
  font-weight: bold;
}
body section.authentication .auth-grid .auth-left .holder .copyright {
  padding: 10px 10px 0px;
  width: 100%;
  text-align: center;
  font-size: 12px;
}
body section.authentication .auth-grid .auth-left .holder .copyright p {
  margin: 0;
}
@media (max-width: 991px) {
  body section.authentication .auth-grid .auth-left {
    background-color: #8E9CFD;
  }
}
body section.authentication .auth-grid .auth-right {
  background: transparent;
  bottom: 0px;
  top: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  body section.authentication .auth-grid {
    grid-template-columns: 1fr;
  }
}
body section.authentication .password-wrap {
  position: relative;
}
body section.authentication .password-wrap .show-hide {
  position: absolute;
  right: 10px;
  top: 10px;
  font-weight: normal;
  cursor: pointer;
}
body section.authentication .password-wrap input[type=password] ~ .hide {
  display: none;
}
body section.authentication .password-wrap input[type=text] ~ .show {
  display: none;
}

/* MEDIA QURIES */
.visible-sm-xs,
.visible-xs {
  display: none;
}

@media (max-width: 991px) {
  .hidden-sm-xs {
    display: none;
  }
  .visible-sm-xs {
    display: block;
  }
  .container {
    max-width: 96%;
  }
}
@media (max-width: 767px) {
  .visible-xs {
    display: block;
  }
  .hidden-xs {
    display: none;
  }
  .container {
    max-width: 96%;
  }
}/*# sourceMappingURL=authentication.css.map */