body {
  background: linear-gradient(85.82deg, #212121 1%, #4B4B4B 57.01%, #212121 99.62%);
  color: #fff;
}

.login-page {
  width: 100%;
  display: flex;
  justify-content: center;
}

.login-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-card {
  width: 100%;
  text-align: center;
}

.login-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 44px;
  margin-bottom: 12px;
}

.login-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  margin-bottom: 40px;
}

.input-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 315px;
  margin: auto;
}

.input-inner {
  position: relative;
  width: 100%;
}

.login-input {
  width: 100%;
  height: 50px;
  padding: 12px 20px;
  border: 1.5px solid #1391D7;
  border-radius: 30px;
  background-color: #f8f8f8;
  color: #000;
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  transition: border 0.2s ease;
}

.login-input:focus {
  border-color: transparent;
  outline: none;
}

.toggle-password {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-70%);
  background: transparent;
  border: none;
  cursor: pointer;
  width: 23px;
  height: 22px;
  background-image: url('../libs/eye-off.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  pointer-events: all;
}

.toggle-password:hover {
  opacity: 1;
}

.toggle-password.active {
  background-image: url('../libs/eye.svg');
}

.login-button {
  width: 100%;
  max-width: 315px;
  height: 50px;
  padding: 14px;
  border-radius: 25px;
  border: none;
  background-color: #BDBDBD;
  color: #F6F6F6;
  cursor: pointer;
  transition: background 0.2s;
  margin: 16px auto;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
}

.login-button:hover {
  background-color: #d6d6d6;
}

.login-button.active {
  background-color: #1391D7;
}

.login-button.active:hover {
  background-color: #33A3E8;
}

.forgot-link {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #bbb;
  text-align: center;
}

.error-message {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #BDBDBD;
  margin-top: 4px;
  margin-left: 6px;
}

.error-icon {
  font-size: 14px;
  opacity: 0.8;
}

.input-wrapper.error .error-message {
  display: flex;
}

.input-wrapper.error .login-input {
  border-color: #E95050;
}

.auth-header-button {
  border: 1px solid #BDBDBD;
  color: #BDBDBD;
  border-radius: 24px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  display: inline-flex;
  align-items: center;
}

.auth-header-button img {
  margin-right: 5px;
}

.reset-successfull {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 22px;
  line-height: 100%;
  text-align: center;
  color: #1391D7;
}

.reset-successfull img {
  margin-right: 8px;
}