@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oxanium:wght@200..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
body {
  background-color: #0a0a0a;
  margin: 0;
  padding: 0;
}

* {
  font-family: "Oxanium", sans-serif;
}

div,
section {
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.password-wrapper {
  position: relative;
  width: 100%;
}

.password-wrapper svg {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
}

.password-wrapper .opened {
  display: none;
}

section#login {
  width: 100%;
}

section#login .left, section#login .right {
  width: 50%;
  height: 100vh;
}

section#login .left img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

section#login .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

section#login .right * {
  color: #Fff;
}

section#login .right > img {
  margin-bottom: 32px;
}

section#login .right h2 {
  margin: 0;
}

section#login .right p {
  margin: 0;
  margin-top: 7px;
  margin-bottom: 25px;
}

section#login .right button {
  max-width: 435px;
  width: 100%;
  line-height: 44px;
  text-align: center;
  background-color: #CB2C30;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border: none;
  cursor: pointer;
}

section#login .input-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section#login .input-full, section#login .input {
  margin-bottom: 25px;
  max-width: 435px;
  width: 100%;
}

section#login .input-full label, section#login .input label {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 7px;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

section#login .input-full label span, section#login .input label span {
  color: #CB2C30;
}

section#login .input-full input, section#login .input input {
  width: 100%;
  height: 44px;
  padding-left: 20px;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  background-color: transparent;
  color: #626262;
  border: 1px solid #292929;
}

section#login .input-full .password-wrapper, section#login .input .password-wrapper {
  position: relative;
  width: 100%;
}

section#login .input-full .password-wrapper svg, section#login .input .password-wrapper svg {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
}

section#login .input .inactive {
  background-color: #ECECEC;
  color: #B8B8B8;
}

section#login .input:last-child {
  margin-left: 17px;
}

section#login .input:last-child button {
  margin-top: 27px;
}

section#mobile {
  width: 100%;
  height: 100vh;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  gap: 20px;
  text-align: center;
}

@media (max-width: 1280px) {
  section:not(#mobile) {
    display: none;
  }
  section#mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
/*# sourceMappingURL=index.css.map */