.container {
  display: flex;

  width: 100%;
  height: 100vh;

  flex-direction: row;

  font-family: "Inter";
  font-style: normal;
}

.login_view {
  width: 591px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background-color: #2b2b33;

  color: white;

  padding-left: 37px;
  padding-right: 71px;
}

.dummy_picture {
  width: 100%;

  object-fit: cover;
  height: auto;
}

.form {
  display: flex;

  flex-direction: column;
}

.form > * {
  margin-bottom: 32px;
}

.form__action_title {
  font-weight: 600;
  font-size: 28px;
  line-height: 29px;
}

input[required] {
  width: 483px;
  height: 52px;

  border: 1px solid #eeeeee;
  border-radius: 10px;

  font-weight: 400;
  font-size: 18px;
  line-height: 17px;

  padding-top: 4px;
  padding-left: 20px;
}

.form__lost_password,
.register__registation {
  color: #d74343;

  font-weight: 500;
  font-size: 18px;
  line-height: 17px;
}

.form__submit {
  background-color: #d74343;

  width: 152px;
  height: 52px;

  border-radius: 10px;
  color: white;

  border: none;

  font-weight: 600;
  font-size: 18px;
  line-height: 17px;
}

.register {
  display: flex;

  align-items: center;
}

.register__info {
  font-weight: 400;
  font-size: 18px;
  line-height: 17px;
}

.register__registation {
  margin-left: 7px;
}

div.legal_information {
  margin-top: 5px;
}

a.legal_information {
  text-decoration: underline;
  color: #d74343;
  cursor: pointer;

  font-weight: 400;
  font-size: 18px;
  line-height: 17px;
}

.login_view__bottom {
  display: flex;
  flex-direction: column;
}
