@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: "Malgun Gothic", arial, sans-serif;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  font-family: "Malgun Gothic", arial, sans-serif;
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* Footer Layout */
.lay_footer {
  height: 75px;
  padding-left: 50px;
  padding-right: 50px;
  border-top: 1px solid #DBDCDE;
  background-color: #FFFFFF; }
  .lay_footer .footer_wrap {
    display: flex;
    align-items: center;
    height: 100%; }

/* Copyright */
.footer_copyright {
  flex: auto;
  display: flex;
  align-items: flex-end; }
  .footer_copyright .img_logo {
    flex: none;
    margin-right: 10px; }
  .footer_copyright .txt_copyright {
    font-size: 10px;
    line-height: 1.3;
    color: #212121;
    text-transform: uppercase; }

/* 바로가기 */
.footer_shortcut {
  flex: none;
  display: flex; }
  .footer_shortcut .footer_link {
    margin-right: 10px; }
    .footer_shortcut .footer_link:before {
      content: '';
      vertical-align: middle;
      display: inline-block;
      width: 1px;
      height: 12px;
      margin-right: 10px;
      background-color: #D1D2D3; }
    .footer_shortcut .footer_link a {
      color: #999999;
      font-size: 12px;
      line-height: 1.3;
      letter-spacing: -0.02em;
      text-decoration: none; }
    .footer_shortcut .footer_link:first-child:before {
      content: none; }
    .footer_shortcut .footer_link:last-child {
      margin-right: 0; }

/* Footer 이미지 */
.img_footer {
  background-image: url(../images/img_footer.png); }
  .img_footer.img_logo {
    font-size: 0;
    color: transparent;
    display: block;
    width: 72px;
    height: 13px;
    background-position: 0 0; }

.login_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  min-height: 880px; }

.login_box {
  width: 500px;
  display: flex;
  flex-direction: column; }

.img_logo {
  display: block;
  width: 500px;
  height: 150px;
  background-image: url(../images/img_login_logo.png); }

.login_banner {
  width: 500px; }

.login_content {
  box-sizing: border-box;
  padding: 30px 29px;
  border: 1px solid #DADBDC;
  border-top-width: 0; }

.login_form .login_form_wrap {
  display: flex;
  align-items: center;
  color: #181818;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid #DADBDC;
  height: 50px;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 10px; }
  .login_form .login_form_wrap .label {
    flex: none;
    text-align: right;
    width: 31px;
    padding-right: 10px;
    margin-right: 10px;
    position: relative; }
    .login_form .login_form_wrap .label:after {
      content: ' ';
      display: block;
      width: 1px;
      height: 12px;
      position: absolute;
      right: 0;
      top: calc(50% - 6px);
      background-color: #D2D3D4; }
  .login_form .login_form_wrap .inp_text {
    color: #050505;
    font-size: 14px;
    font-weight: bold;
    flex: auto;
    border-width: 0;
    padding: 10px 5px; }
    .login_form .login_form_wrap .inp_text:focus {
      outline-width: 0;
      border: 1px solid #fb4f00; }
  .login_form .login_form_wrap .mail {
    opacity: 0.4;
    flex: none;
    padding-left: 10px; }

.btn_login {
  font-size: 18px;
  color: #FFFFFF;
  font-family: inherit;
  font-weight: bold;
  width: 100%;
  height: 50px;
  border: 0;
  margin-bottom: 15px;
  cursor: pointer;
  background-color: #fb4f00; }
  .btn_login:hover, .btn_login:active {
    background-color: #050505; }

.error {
  color: #181818;
  font-size: 14px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  border: 1px solid #DADBDC;
  padding: 10px 20px 17px;
  margin-bottom: 26px; }
  .error .error_title {
    color: #fc5000; }

.login_info {
  color: #181818;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  margin-top: 15px; }

.login_footer {
  text-align: center; }
  .login_footer .footer_shortcut {
    justify-content: center;
    padding: 20px 0 16px; }
  .login_footer .footer_link a {
    font-size: 14px;
    font-weight: bold; }
  .login_footer .footer_copyright {
    justify-content: center;
    border-top: 1px solid #DADBDC;
    padding: 25px 0; }
  .login_footer .txt_copyright {
    color: #ABACAD;
    font-size: 10px; }

/* Footer 이미지 */
.img_footer {
  background-image: url(../images/img_footer.png); }
  .img_footer.img_logo {
    font-size: 0;
    color: transparent;
    display: block;
    width: 72px;
    height: 13px;
    background-position: 0 0; }
