* {
  margin: 0;
  padding: 0;
  font-family: Roboto, sans-serif;
}

input {
  border: none;
  outline: none;
  background: none;
  padding: 0;
  font: inherit;
}

button {
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

button:focus {
  outline: none;
}

body {
  width: 100%;
  background: url("/img/background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  padding-block-start: 120px;
}

.popup {
  box-sizing: border-box;
  background-color: #FFFFFF;
  padding-inline: 40px;
  padding-block: 36px 60px;
  border-radius: 16px;
  border: 1px solid #D6D7D7;
  width: 100%;
  max-width: 436px;
}

.login-input-form {
  display: flex;
  flex-direction: column;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
}

.login-input-form__new-login-notify {
  gap: 20px;
}

.login-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.login-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid var(--color-border-default);
  border-radius: 16px;
  padding: 20px;
}

.login-info-message {
  color: var(--color-text-subdued);
  font-size: 14px;
}

.login-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  color: var(--color-action-neutral-default);
}

.login-box {
  font-size: 14px;
  line-height: 20px;
  color: var(--color-text-subdued);
}

.login-header--notification {
  margin-block-end: 0;
}

.login-box__text {
  display: flex;
  flex-direction: row;
  gap: 6px;
}

.copy-login {
  cursor: pointer;
}

.login-header {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #323537;
  margin-block-end: 24px;
}

.inputs {
  display: flex;
  flex-direction: column;
  margin-block-end: 36px;
}

.input-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-tag {
  color: rgba(108, 115, 123, 1);
  font-size: 13px;
  line-height: 16px;
  flex-shrink: 0;
}

.input-wrapper {
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid rgba(214, 215, 215, 1);
  align-items: center;
  padding-inline: 12px;
  padding-block: 10px;
  width: 100%;
}

.input-wrapper:focus-within:not(.input-error) {
  border: 1px solid transparent;
  box-shadow: 0 0 0 2px #00A651;
}
.input-wrapper--supplementary:focus-within:not(.input-error) {
  border: 1px solid transparent;
  box-shadow: 0 0 0 2px #1F91DC;
}

.input-wrapper_errored {
  border: 1px solid #eb5b47;
}

.input-element {
  font-size: 15px;
  width: 100%;
}

.login-button {
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  background-color: #00A651;
  color: #FFFFFF;
  padding-inline: 12px;
  padding-block: 10px;
}

.login-button--supplementary {
  background-color: #1F91DC;
}

.login-hide-password {
  width: 20px;
  height: 20px;
  color: #42484E99;
  cursor: pointer;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.error {
  font-size: 13px;
  color: rgba(226, 66, 44, 1);
  margin-block-start: 4px;
}

.block-none {
  display: none;
}

.input-error {
  border: 1px solid rgba(235, 91, 71, 1);
  box-shadow: none;
}

.login-input {
  margin-block-end: 16px;
}

.privacy-policy {
  font-size: 13px;
  line-height: 16px;
  color: #99A2AD;
}

.reset-password {
  width: 100%;
  padding-block: 8px;
  text-decoration: none;
  color: var(--text-color-link);
  font-size: 13px;
  line-height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
