@charset "utf-8";
@import url("/login/css/reset.css");
@import url("/login/css/system.css");
@import url("https://fonts.googleapis.com/css2?family=Aldrich&display=swap");

.--background {
  /*  */
  /*  */
  /*  */
  /* 배경화면 변경 ===== ===== ===== ===== ===== ===== ===== ===== ===== */
  background-image: url();
  /* // 배경화면 변경 ===== ===== ===== ===== ===== ===== ===== ===== ===== */
  /*  */
  /*  */
  /*  */
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.--text__aldrich {
  font-family: 'Aldrich';
  font-weight: 300;
}

.--shadow {
  height: 14rem;
}

.--input {
  padding: 0.5rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 100;
  line-height: 1.25rem;
  letter-spacing: 0.0625rem;
  width: 100%;
  background: rgba(170, 170, 170, 0.30);
  backdrop-filter: blur(1rem);
  color: #fff;
}

.--input:focus {
  outline: 0.0625rem solid #fff;
}

.--button__large {
  background-color: #fff;
  color: #111;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  letter-spacing: -0.0175rem;
  width: 100%;
  padding: 0.5rem 0;
  border-radius: 0.25rem;
  transition: all 0.125s ease-out;
}

.--button__large:hover {
  cursor: pointer;
  background-color: #111;
  color: #fff;
  outline: 0.0625rem solid #444;
}

.login {
  width: 82.875rem;
  height: 14rem;
  background: rgba(17, 17, 17, 0.40);
  backdrop-filter: blur(1rem);
  border-radius: 1rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.20);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
}

.login__left {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: space-between;
}

.login__left_area {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 3rem;
}

.login__left_area_top {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.login__left_area_top_title {
  font-size: 2.75rem;
  color: #fff;
}

.login__left_area_top_subtitle {
  color: #aaa;
}

.login__left_area_text {
  color: #fff;
}

.login__left_area_bottom {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  padding-top: 1rem;
}

.login__left_area_bottom_text {
  color: #aaa;
}

.login__left_area_bottom_logo {
  height: 0.75rem;
}


.login__right {
  width: 22rem;
  background: rgba(17, 17, 17, 0.40);
  backdrop-filter: blur(1rem);
  border-radius: 0 1rem 1rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}

.login__right_top {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.login__right_top_id {
  display: flex;
  align-items: center;
}

.login__right_top_id_text {
  color: #fff;
  min-width: 4rem;
}

.login__right_top_pw_text {
  color: #fff;
  min-width: 4rem;
}

.login__right_top_pw {
  display: flex;
  align-items: center;
}


.login__right_bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.login__right_bottom_caption {
  display: flex;
  align-items: center;
}

.login__right_bottom_caption_text {
  color: #aaa;
}

.--icon {
  width: 1rem;
  height: 1rem;
}

@media screen and (max-width: 960px) {
  html {
    font-size: 1.8vw !important;
  }

  .login__left_shadow,
  .login__left_area_text,
  .login__left_area_bottom {
    display: none;
  }

  .login__left_area_top_title {
    font-size: 1.25rem;
  }

  .login__left_area_top_subtitle {
    font-size: 0.875rem;
  }

  .login {
    width: fit-content;
    height: fit-content;
    flex-direction: column;
    align-items: center;
  }

  .login__right {
    border-radius: 0 0 1rem 1rem;
    height: 14rem;
    background: none;
    backdrop-filter: none;
  }

  .login__left {
    padding: 1.5rem 1rem 0 1rem;
  }

  .login__left_area {
    padding: 0;
  }

  .--input {
    background: rgba(17, 17, 17, 0);
  }
}

@media screen and (max-width: 480px) {
  html {
    font-size: 4vw !important;
  }
}
