@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700&display=swap");
::selection {
  background: #243b78;
  color: #FFF;
}

body {
  font-family: "Poppins", sans-serif;
  color: #404455;
  background-color: #edf2f4;
  overflow: hidden;
  line-height: 1.42857143;
  position: relative;
  height: 100vh;
  padding: 0;
  margin: 0;
}
body.overFlow {
  overflow-y: auto;
}
@media print {
  body {
    background: transparent;
    overflow-y: auto;
  }
}
body * {
  text-decoration: none;
  outline: 0;
  box-sizing: border-box;
  print-color-adjust: exact;
  font-family: inherit;
  border: 0;
}

.login {
  display: flex;
  height: 100vh;
  background-image: url("../images/loginPageBackground.webp");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-items: center;
}
.login article {
  margin-right: 200px;
}
.login article form {
  width: 350px;
  border-radius: 10px;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
}
.login article form .logo {
  height: 100px;
  display: block;
  margin: 0 auto 10px auto;
}
.login article form i {
  display: block;
  height: 24px;
  width: 24px;
  position: absolute;
  right: 20px;
  background-image: url("../images/passReveal.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 48px 24px;
  cursor: pointer;
  transform: translateY(-39px);
}
.login article form i.revert {
  background-position: -24px 0;
}
.login article form input[type=email],
.login article form input[type=text],
.login article form input[type=password],
.login article form select {
  width: 100%;
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 24px;
  padding: 10px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.8);
  appearance: none;
}
.login article form select {
  cursor: pointer;
  background-image: url("../images/select-arrow.png");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.login article form .select {
  width: 50%;
  float: left;
}
.login article form .select:nth-of-type(odd) {
  padding-right: 2.5px;
}
.login article form .select:nth-of-type(even) {
  padding-left: 2.5px;
}
.login article form p {
  float: left;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  font-weight: 500;
  color: #FFF;
}
.login article form button[type=submit] {
  border-radius: 8px;
  background-color: #2852b5;
  color: #FFF;
  padding: 8px 0;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  width: 100%;
  cursor: pointer;
}

/*# sourceMappingURL=login.css.map */
