._login_ {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(to top right, #001e24, #014a63);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.container {
  width: 60%;
  max-width: 900px;
  height: 500px;
  display: flex;
  border-radius: 15px;
  overflow: hidden;
  background-color: #001e24;
  box-shadow: 0 26px 58px 0 rgba(0, 0, 0, 0.22),
    0 5px 14px 0 rgba(0, 0, 0, 0.18);

  @media only screen and (max-width: 768px) {
    flex-direction: column;
    height: 80%;
    width: 80%;
  }

  @media only screen and (max-width: 480px) {
    flex-direction: column;
    height: 60%;
    width: 90%;
  }
}

.sideleft {
  width: 100%;
  background-color: #001e24;
  height: 100%;
  overflow: hidden;
}

.login_hero {
  width: 100%;
  height: 100%;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    float: right;
    scale: 1.2;
    opacity: 0.7;
    transition: all ease 0.9s;
  }

  &:hover img {
    opacity: 1;
    scale: 1;
  }
}

.sideright {
  background-color: aliceblue;
  min-width: 350px;
  /* border-radius: 15px; */
  padding: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.title {
  width: 100%;
  padding: 20px;
}

.form_login {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;

  @media only screen and (max-width: 450px) {
    padding: 10px;
  }
}

._input_container {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  gap: 5px;
}

._label {
  font-size: 16px;
}

._inputwrap {
  width: 100%;
  height: 100%;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease 0.5s;
  background-color: rgba(197, 228, 255, 0.308);
  border-radius: 50px;

  span {
    width: 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
  }
}

._input {
  /* width: 260px; */
  width: 100%;
  height: 30px;
  font-size: 14px;
  border: none;
  background-color: transparent;

  &:focus {
    outline: none;
  }
}

.button {
  font-size: 15px;
  padding: 10px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background-color: #014a6335;
  transition: all ease 0.3s;

  &:hover {
    background-color: #014a63;
    color: aliceblue;
  }
}

#_error {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: fit-content;
  padding: 15px 10px;
  border-radius: 10px;
  background-color: #ddb1b1;
  font-size: 14px;
  z-index: 9;
  opacity: 0;
}