@charset "UTF-8";
.all_elements {
  width: 100%;
  max-width: 420px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.title_login {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.title_login h2 {
  font-size: 28px;
}
.title_login h3 {
  font-size: 16px;
}

.input_data_block {
  width: 100%;
}
.input_data_block p:not(.hint-for-password) {
  margin-top: 8px;
}

.btn--enterLogin {
  height: 45px !important;
  width: 100% !important;
  max-width: 100% !important;
}

.another_way_login_block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.another_way_separator {
  height: 18px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #43474b;
}

.another_way_separator p {
  padding: 0;
  margin: 0;
}

.another_way_divider {
  border: 1px solid #edf2f7;
  width: 90%;
  height: 0;
}

.another_way_login {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.another_way_login .social-login-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 46px;
  width: 46px;
  border: none;
  border-radius: 23px;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.25);
  transition: all ease-in-out 0.3s;
  outline: none;
  box-sizing: border-box;
  text-decoration: none;
  padding: 12px;
  background-color: transparent;
}
.another_way_login .social-login-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.another_way_login .social-login-btn:active {
  background-color: rgba(0, 0, 0, 0.1);
}
.another_way_login .social-login-btn img {
  display: flex;
  height: 100%;
  width: auto;
}

.replace_login_page {
  text-align: center;
  font-size: 14px;
  color: #43474b;
}

.replace_login_page a {
  color: black;
  text-decoration: none;
}

form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.error {
  font-size: 11px;
  color: #b01111;
}

.input_data_field_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  cursor: pointer;
}

.toggle-password img {
  width: 20px; /* Настройте по своему усмотрению */
  height: 20px; /* Настройте по своему усмотрению */
}
