@import url("https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fjalla+One&family=Yanone+Kaffeesatz:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
.main {
  margin: 200px 0 0 0;
  width: 100%;
}

.login {
  width: 100%;
  height: 100%;
}
.login_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.login__container {
  width: 100%;
  height: 100%;
}
.login__content {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.login-title {
  text-transform: uppercase;
  text-align: center;
  font-size: 40px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  margin: 0 0 30px 0;
}

.login-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.login-row {
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.login-remember {
  margin: 0px 5px 0 0;
}

.login-button {
  cursor: pointer;
  font-family: "Ubuntu", sans-serif;
  border-radius: 10px;
  margin: 30px 0 0 5px;
  width: 310px;
  height: 50px;
  background: #127cc1;
  text-transform: uppercase;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
}

.input {
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  border-radius: 8px;
  height: 50px;
  width: 300px;
  background: #e6e6e6;
  margin: 10px;
  padding: 10px;
}

input::-webkit-input-placeholder {
  font-size: 18px;
  text-transform: uppercase;
  margin: 0 0 0 10px;
}

input::-moz-placeholder {
  font-size: 18px;
  text-transform: uppercase;
  margin: 0 0 0 10px;
}

input:-ms-input-placeholder {
  font-size: 18px;
  text-transform: uppercase;
  margin: 0 0 0 10px;
}

input::-ms-input-placeholder {
  font-size: 18px;
  text-transform: uppercase;
  margin: 0 0 0 10px;
}

input::placeholder {
  font-size: 18px;
  text-transform: uppercase;
  margin: 0 0 0 10px;
}

.input:focus {
  top: 3px;
  -webkit-box-shadow: 0px 0px 30px #127cc1;
          box-shadow: 0px 0px 30px #127cc1;
}

.remember {
  cursor: pointer;
}

.loading {
  display: none;
  margin: -20px 0 0 0;
  min-width: 100%;
  position: fixed;
  z-index: 117575475471;
  height: 100%;
  background: rgba(100, 100, 100, 0.6);
}

.loading__container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.loading__content img {
  width: 300px;
}

.wrong {
  font-family: "Fjalla One", sans-serif;
  font-size: 35px;
  font-weight: 500;
  letter-spacing: 10px;
  text-transform: uppercase;
  display: none;
  right: 0;
  margin: -20px 0 0 0;
  min-width: 450px;
  position: absolute;
  z-index: 117575475471;
  height: 100px;
}

.wrong__container {
  margin: 100px 0 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.wrong__content {
  top: 0;
  color: white;
  width: 450px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 7px;
  -webkit-transition: 1s;
  transition: 1s;
  background: rgba(255, 0, 0, 0.6);
}

@media (max-width: 750px) {
  .wrong {
    font-size: 20px;
    letter-spacing: 5px;
    min-width: 200px;
    height: 50px;
  }
  .wrong__container {
    margin: 200px 0 0 50px;
  }
  .wrong__content {
    width: 250px;
    height: 50px;
  }
}