@font-face {
  font-family: "Manrope";
  src: url("/web/css/main/Manrope-Regular.woff2") format("woff2"),
    url("/web/css/main/Manrope-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Manrope";
  src: url("/web/css/main/Manrope-Bold.woff2") format("woff2"),
    url("/web/css/main/Manrope-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

a,
a:active,
a:visited,
a:focus {
  text-decoration: none;
}

a {
  -moz-user-select: -moz-none;
  -o-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  margin: 0;
}

h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #17314c;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: "Manrope";
  font-size: 16px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  background: #f0f3ff;
}

#content {
  width: 462px;
  display: flex;
  flex-direction: column;
}

#box {
  display: flex;
  flex-direction: column;
  border-radius: 32px;
  padding: 32px;
  background-color: #ffffff;
}

.login_form {
  display: flex;
  flex-direction: column;
}

#welcome {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 0 0 0;
}

#welcome_vk_anounce {
  display: flex;
  text-align: center;
  padding: 13px 0 0 0;
}

#welcome_by_email {
  display: flex;
  padding: 32px 0 0 0;
}

#action_login_by_vk {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px 0 0 0;
  padding: 13px 21px;
  border: 1px solid #cccccc;
  border-radius: 13px;
  background-color: #ffffff;
  
}

#action_login_by_vk > svg {
  width: 24px;
  height: 24px;
}

#action_login_by_vk > div {
  font-size: 24px;
  font-weight: 700;
  color: #17314c;
  padding: 0 0 0 13px;
}

.input_group {
  display: flex;
  flex-direction: column;
  margin: 13px 0 0 0;
}

.holder {
    position: relative;
}

#ps_eye, #ps_eye_2 {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.input_label {
    margin: 0 0 7px 0;
}

.light_input {
  width: 100%;
  padding: 7px 13px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  
  font-size: 16px;
  font-weight: 400;
  outline: none;
  cursor: text;
  font-family: "Manrope";
  min-height: 48px;
  height: 48px;
}

#message {
  display: flex;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #ff0000;
  margin: 13px 0;
}

.action {
  padding: 20px 32px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(92.47deg, #007aff 0%, #ef90ff 100%);
  outline: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin: 7px 0 0 0;
  font-family: "Manrope";
}

#register_link {
  margin: 13px 0 0 0;
  cursor: pointer;
}

#reset_link {
  margin: 13px 0 0 0;
  cursor: pointer;
}




@media (max-width: 640px) {
  html,
  body {
    min-width: 336px;
  }

  #content {
    width: 100%;
  }

  h1 {
    font-size: 24px;
  }

  #action_login_by_vk > div {
    font-size: 16px;
  }

}