.main_log_div {
  display: flex;
  width: 100%;
  height: 100vh;
  background: var(--background);
  background: var(--home_linear_gradiant);
}

a.logo {
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: 26px;
  font-weight: bold;
  color: var(--on_primary);
  text-decoration: none;
}

.log_decoration {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(100% - 600px);
}

.log_decoration .icon_div {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.log_decoration .icon_div img {
  width: 56px;
  height: 56px;
  margin-right: 20px;
}

.log_decoration .icon_div span {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--on_primary);
}

.welcome_div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px;
  height: 50vh;
}

.welcome_div h2 {
  color: var(--on_primary);
  font-size: 2rem;
}

.welcome_div p {
  color: var(--on_primary);
  font-size: 1rem;
}

.bottom_image_container {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
}

.bottom_image_container img {
  height: 50vh;
  max-width: 80%;
  border-top-left-radius: var(--border_radius);
  object-fit: cover;
  object-position: 0%;
}

.log_center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: var(--surface);
  padding: 0 80px;
  position: relative;
  width: 600px;
  max-width: 100%;
}

.log_center h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
}

.log_center form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.log_center form input:not([type="submit"]) {
  border-radius: var(--border_radius);
  border: 1px solid var(--divider);
  outline: none;
  padding: 8px;
  width: 100%;
  margin-left: 10px;
}

.log_center form input[type="submit"] {
  margin-top: 30px;
}

.log_center label {
  color: var(--text);
  margin: 10px 0;
  font-weight: bold;
}

.input_icon {
  display: flex;
  align-items: center;
  position: relative;
}

.input_icon i {
  position: absolute;
  color: var(--primary);
  right: 10px;
}

.input_icon .icon_lock {
  cursor: pointer;
}

.log_icon {
  display: flex;
  background-color: var(--surface);
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 32px;
  box-shadow: var(--box_shadow);
  position: absolute;
  top: -42px;
}

.log_icon img {
  width: 52px;
  height: 52px;
}

.log_type {
  margin-top: 10px;
  color: var(--text);
}

.log_type a {
  text-decoration: none;
  color: var(--primary);
}

@media only screen and (max-width: 1200px) {
  .log_center {
    width: 50%;
    min-width: 450px;
  }

  .log_decoration {
    width: 50%;
  }
}

@media only screen and (max-width: 1000px) {
  .welcome_div {
    padding: 100px 20px 0 20px;
  }
}

@media only screen and (max-width: 700px) {
  .log_center {
    width: 100%;
    background-color: var(--background);
    min-width: unset;
    height: unset;
  }

  .log_decoration {
    display: none;
  }
}

@media only screen and (max-width: 500px) {
  .log_center {
    padding: 0 40px;
  }

  .main_log_div {
    height: unset;
    min-height: 80vh;
  }
}

@media only screen and (max-width: 330px) {
  .log_center {
    padding: 0 20px;
  }
}
