.page {
  flex-direction: column;
  height: calc(100% - 20px);
  position: absolute;
  place-content: center;
  width: calc(100% - 0px);
}
/* @media .page */
@media (max-width: 767px) {
  .page {
    margin-top: 100px;
    margin-bottom: 150px;
    height: 100%;
    position: relative;
  }
}

.container {
  display: flex;
  height: 410px;
  margin: 0 auto;
  width: 400px;
}
/* @media .container */
@media (max-width: 767px) {
  .container {
    flex-direction: column;
    height: 300px;
    width: 100%;
  }
}

.left {
  display: inline-block;
  background: var(--csconsultresultpage-titlebox_bgcolor);
  height: 120px;
  margin: 10px;
  position: relative;
  border-radius: 5px;
  border: 1px solid #292828;
  width: calc(100% - 20px);
}
/* @media .left */
@media (max-width: 767px) {
  .left {
    margin: 10px;
    width: calc(100% - 20px);
  }
}

.login {
  color: var(--default-projectname-text-color);
  font-size: 24px;
  font-weight: 900;
  margin: 10px 10px 10px;
}

.msg {
  color: yellow;
  font-size: 12px;
  line-height: 1.5;
  margin: 7px 10px;
}

/* .notice 안내 메세지 */
.notice {
  color: var(--default-msg-text-color);
  font-size: 12px;
  line-height: 1.5;
  margin-left: 10px;
}

.right {
  background: var(--default-rightbox_bgcolor);
  box-shadow: 0px 0px 15px 6px rgba(0, 0, 0, 0.22);
  border-radius: 5px;
  color: #f1f1f2;
  position: relative;
  width: 100%;
}
/* @media .right */
@media (max-width: 767px) {
  .right {
    flex-shrink: 0;
    height: 420px;
    width: 100%;
    position: relative;
    left: 0px;
  }
}

.form {
  margin: 10px;
  position: absolute;
  width: 345px;
}

/* @media .form */
@media (max-width: 767px) {
  .form {
    margin: 10px;
    flex-direction: column;
    width: calc(100% - 20px);
  }
}

label {
  color: #c2c2c5;
  display: block;
  font-size: 14px;
  height: 16px;
  margin-top: 20px;
  margin-bottom: 5px;
}

.button_form_transparent,
.input_form_transparent {
  background: transparent;
  border: 0;
  border-bottom: solid #aaaaaa 1px;
  color: #f2f2f2;
  font-size: 20px;
  height: 30px;
  line-height: 30px;
  outline: none !important;
  width: 100%;
}

input::-moz-focus-inner {
  border: 0;
}

input::selection {
  background-color: var(--topmenu-selectedmenu-bg-color-pc); /* 선택 배경색 변경 */
  color: white; /* 선택 글자색 변경 */
}

#submit {
  background: var(--csconsultresultpage-titlebox_bgcolor);
  margin-top: 40px;
  border: 1px solid #292828;
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.12) 0 1px 1px;
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  transition: box-shadow 0.05s ease-in-out, opacity 0.05s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;
  height: 50px;
}

#submit:focus {
  color: #f2f2f2;
}

#submit:active {
  color: #d0d0d2;
}

.div-signpw {
  font-size: 12px;
  margin-top: 15px;
  float: right;
}

.a-color {
  color: gray;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}

.a-color:hover,
.a-colorfocus {
  color: #fcfcfc;
  text-decoration: none;
  outline: none;
}
