body {
  font-family: Inter, sans-serif;
  font-size: 18px;
  background: #dae7f0;
  background: linear-gradient(
    76deg,
    rgba(218, 231, 240, 1) 0%,
    rgba(100, 167, 250, 1) 49%,
    rgba(152, 163, 179, 1) 100%
  );
  background-size: 400%; /* Увеличиваем для эффекта движения */
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.error {
  color: red;
  margin-bottom: 10px;
  font-size: 14px;
}

form {
  display: flex;
  flex-direction: column;
}

form span {
  display: block;
  width: 60px;
}

form input {
  border: 1px solid #ccc;
  margin: 7px 0;
  padding: 5px;
  border-radius: 6px;
}

.password-div {
  display: flex;
  position: relative;
}

.password-div button {
  position: absolute;
}

.password-div button {
  position: absolute;
  width: 24px;
  right: 12px;
  top: 7px;
  bottom: 0;
}

.login_page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #eef1f3;
}

.container.login {
  min-height: 200px;
  text-align: center;
  border-radius: 6px;
  background-color: #fff;
  padding: 15px;
  margin-top: -5em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.login .h2 {
  display: block;
  padding: 10px 0;
  font-weight: 500;
}

.btn {
  display: block;
  width: 100%;
  text-decoration: none;
  text-align: center;
  color: inherit;
  line-height: 2;
  cursor: pointer;
  border: 0;
  border-radius: 6px;
  padding: 5px 10px;
  background: transparent;
}

.btn.enter {
  width: 100px;
  background-color: #6da9f2;
  color: #fff;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
  margin-top: 10px;
}

.btn.enter:hover {
  background-color: #569bf0;
}

button.showpass-btn {
  font-size: 14px;
  cursor: pointer;
  text-align: right;
  padding-top: 10px;
  transition: color 0.15s ease-in-out;
}

button.showpass-btn:hover {
  color: #0374ae;
}

@font-face {
  font-family: Inter;
  src: url("../fonts/Inter-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
