body {
  box-sizing: border-box;
  margin: 0;
  font-family: "Metropolis-Regular";
}

.main {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: hidden;
  display: flex;
  flex-direction: row;
}

.main > div {
  flex: 1;
}

.logo_container {
  height: 4rem;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}

.logo_container > div {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.logo_container > div:nth-child(2) {
  color: white;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.logo_container > div:nth-child(2) > span {
  font-family: "Metropolis-Regular";
  font-weight: 400;
  color: var(--w-1);
  font-size: 10px;
  text-align: justify;
  letter-spacing: 2.15px;
  line-height: normal;
}

.description_container {
  flex: 1;
  color: white;
  padding-top: 2rem;
}

.description_container > h1 {
  font-weight: bolder;
  font-size: xx-large;
  padding: 0.5rem 0 0.5rem 0;
}

.description_container > h1:nth-child(2) {
  text-transform: uppercase;
  color: #cf76ff;
}

.description_container > p {
  font-weight: lighter;
  font-size: larger;
  padding: 0.5rem 0 0.5rem 0;
  line-height: 1.8rem;
}

.description_container > div {
  width: 60%;
  height: 25rem;
}

.description_container > div > img {
  width: 100%;
  height: 100%;
  mix-blend-mode: lighten;
  object-fit: contain;
}

.login_container,
.forgot-password-container,
.change-password-container {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.login_container > form,
.forgot-password-container > form,
.change-password-container > form {
  flex: 0.6;
}

.login_container > form > h1,
.forgot-password-container > form > h1,
.change-password-container > form > h1 {
  text-align: center;
  margin: 20px;
  font-size: xx-large;
}

.form_container,
.input_wrapper {
  display: flex;
  flex-direction: column;
}

.form_container > a,
.forgot-password-container > form > a,
.change-password-container > form > a {
  text-align: center;
  color: white;
  text-decoration: underline;
}

.input_wrapper {
  padding-bottom: 20px;
}

input[type="text"],
input[type="password"] {
  outline: none;
  text-decoration: none;
  color: black;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 14px 16px;
  align-self: stretch;
  background-color: white;
  border-radius: 6px;
  margin-top: 5px;
}

.policy {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: "Metropolis-Regular";
  font-weight: 400;
  color: #f9f9f9;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 16.8px;
}

::placeholder {
  color: black;
  opacity: 1; /* Firefox */
}

.submit_btn {
  all: unset;
  outline: revert;
  text-decoration: none;
  outline: none;
  margin-top: 10px;
  padding: 14px 16px;
  background: linear-gradient(195deg, #42424a, #191919);
  border-radius: 6px;
  text-align: center;
}
