.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: 60px;
    margin-bottom: 150px;
    height: 100%;
    position: relative;
  }
}

.container {
  display: flex;
  height: 520px;
  margin: 0 auto;
  width: 700px;
}
/* @media .container */
@media (max-width: 767px) {
  .container {
    flex-direction: column;
    height: 520px;
    width: 100%;
  }
}

.left {
  display: inline-block;
  background:  #465666;
  box-shadow: inset 0.1rem 0.1rem 0.5rem rgba(64, 64, 64, 0.6);
  height: 240px;
  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);
  }
}

.account {
  color: var(--default-projectname-text-color);
  font-size: 17px;
  font-weight: 600;
  margin: 10px 20px 5px;
}

.msg {
  color: rgb(240, 235, 158);
  font-size: 19px;
  line-height: 1.5;
  font-weight: 900;
  margin: 10px 20px 5px;
}

.msg_banktitle {
  color: rgb(245, 235, 97);
  font-size: 25px;
  line-height: 1.5;
  font-weight: 800;
  margin: 10px 20px 5px;
}

/* .notice 안내 메세지 */
.notice {
  color: var(--default-msg-text-color);
  font-size: 12px;
  line-height: 1.5;
  margin-left: 40px;
}

.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: 530px;
    width: 100%;
    position: relative;
  }
}

.form {
  width: calc(100% - 20px);
  margin-top: 20px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  position: absolute;
}

label {
  color: #c2c2c5;
  display: block;
  font-size: 14px;
  height: 16px;
  margin-top: 20px;
  margin-bottom: 5px;
}

input::selection {
  background-color: var(--topmenu-selectedmenu-bg-color-pc); /* 선택 배경색 변경 */
  color: white; /* 선택 글자색 변경 */
}

.input-container {
  position: relative;
}

.input_form_transparent {
  background: transparent;
  border: 0;
  border-bottom: solid #aaaaaa 1px;
  color: #f2f2f2;
  font-size: 30px;
  height: 40px;
  line-height: 30px;
  outline: none !important;
  width: 100%;
  text-align: left;
  padding-left: 35px; /* 아이콘과 입력박스 공간 */
  background-repeat: no-repeat;
  background-position: 2px center; /* 아이콘 위치 */
  background-size: 24px; /* 아이콘 크기 */
}


.icon-left {
  background-image: url('../../icon/logonh.gif'); /* 농협 아이콘 */
}

.submit_form_transparent {
  background-color: var(--topmenu-selectedmenu-bg-color-pc);
  margin-top: 30px;
  border: 1px solid #292828;
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.12) 0 1px 1px;
  color: #ffffff;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  width: 100%;
  height: 60px;
}

#submit:active {
  background-color:#5381a9;
}

#submit:focus {
  color: #f2f2f2;
}

#submit:active {
  color: #d0d0d2;
}


.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;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.fade-in.show {
  opacity: 1;
}

.div-engine {
  color: whitesmoke;
  font-size: 13px;
  margin-top: 20px;
  float: left;
}

.div-count {
  color: grey;
  font-size: 13px;
  margin-top: 15px;
  float: right;
}

