.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 95vh;
  width: 90vw;
  display: flex;
  justify-content: space-between;
}

.illustration {
  padding: 80px 10px;
  background: var(--secondary-color);
  border-radius: 10px;
  box-shadow: var(--box-shadow-dark-right);
  display: none;
}

.welcome_message {
  font-size: 32px;
  font-weight: 500;
}
.illustration_image {
  width: 90%;
  height: 330px;
  background: url("/assets/login.png") no-repeat center center/cover;
  margin: 0 auto;
}

.input_container {
  margin-bottom: 20px;
}

.form_container {
  padding-top: 80px;
  width: 100%;
}

.form_head {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-color);
}
.sub_head {
  font-size: 14px;
  color: var(--text-color-secondary);
  margin: 8px 0;
}

.form {
  margin: 30px 0;
}

.auth_actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.forgot_password {
  color: var(--component-color);
  font-weight: 700;
  text-decoration: none;
}

.error_container {
  background: rgb(122, 12, 46);
  display: flex;
  align-items: center;
  padding: 20px 15px;
  border-radius: 5px;
  margin-top: 25px;
}

.error_icon_container {
  height: 25px;
  width: 25px;
}

.error_message {
  margin-left: 10px;
  font-weight: 500;
}

@media screen and (min-width: 850px) {
  .container {
    width: 98vw;
  }
  .welcome_message {
    padding-left: 30px;
  }
  .illustration {
    width: 430px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .form_container {
    width: calc(100vw - 470px);
    max-width: 550px;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .form_head {
    font-size: 28px;
  }
  .sub_head {
    font-size: 16px;
  }
}
