@charset "UTF-8";
html {
  height: 100%;
  font-family: "Inter", sans-serif;
  background: rgb(255, 237, 210);
  background: linear-gradient(
      0deg,
      rgba(255, 237, 210, 0.2) 0%,
      rgba(255, 241, 231, 0.2) 23%,
      rgba(232, 255, 249, 0.2) 67%,
      rgba(197, 219, 255, 0.2) 100%
    ),
    no-repeat;
}

body {
  display: flex;
  align-items: center;
  flex-direction: column;
}

#logo {
  width: 20%;
  margin: 2% auto;
}

h3 {
  color: #034236;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
}

.main {
  margin-top: 2vw;
  box-sizing: border-box;
  display: flex;
  width: 40%;
  flex-direction: column;
  text-align: center;
  font-size: 20px;
}
.main .buttons {
  font-size: 20px;
  background-color: #2bbdb4;
  text-align: center;
  font-weight: 400;
  padding: 10px;
  color: white;
  text-decoration: none;
  margin-top: 2vw;
  border-radius: 10px;
  transition: filter 0.3s ease;
}
.main > label {
  margin-top: 2vw;
}
.main .buttons:hover {
  filter: brightness(0.8);
}

.enter {
  width: 100%;
  font-size: 20px;
  text-transform: uppercase;
  background-color: #2bbdb4;
  text-align: center;
  padding: 10px;
  color: white;
  text-decoration: none;
  margin-top: 80vw;
  border-radius: 10px;
}

.buttonMod:hover {
  background-color: rgba(4, 177, 211, 0.6901960784);
}

form {
  width: 85%;
  margin-top: 50%;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  padding: 5%;
  text-align: center;
  font-size: 20px;
}
form input {
  font-size: 20px;
  border: 3px solid #2bbdb4;
  border-radius: 10px;
  padding: 20px 30px;
  background-color: white;
  color: #293b4b;
  margin-top: 30px;
}

/*размеры планшетов*/
@media (max-width: 769px) {
  #logo {
    width: 50%;
    margin: 5% auto;
  }
  .buttons {
    margin-top: 3vw;
  }
}
/**/
/*размеры телефонов*/
@media (max-width: 481px) {
  #logo {
    width: 70%;
    margin: 5% auto;
  }
  .main {
    margin-top: 9vw;
    width: 90%;
  }
  .main .buttons {
    margin-top: 5vw;
  }
}
/**//*# sourceMappingURL=index.css.map */