@charset "utf-8";
@import url("font.css");
@import url("content.css");
@import url("form.css");

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, 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, button, select, input,
table, th, td, hr {
  margin: 0;
  padding: 0;
  border: 0;
  border-spacing: 0px;
  border-collapse: collapse;
  font-family: 'Pretendard', sans-serif;
}

body {
  font-size: 16px;
  line-height: 25px;
  vertical-align: baseline;
  text-decoration: none;
  color: #212121;
  font-weight: 400;
  word-break: keep-all;
  background: #F8F8F8;
}

a {
  text-decoration: none;
  color: #212121;
}

a:active, a:link, a:visited {
  color: #212121;
  outline: 0;
  text-decoration: none;
}

a:hover {
  outline: 0;
  text-decoration: none;
}

.full-screen-layout {
  width: 100%;
  height: 100%;
}

.full-screen-layout .fixed-width {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0;
}

.full-screen-layout .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1200px;
}

.full-screen-layout .content-wrapper .logo {
  width: 334px;
  height: 52px;
  margin: 80px 804px 0 0;
  background: url("/images/pg_logo.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.double-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 0;
}

.single-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0;
}

.single-container .login-image {
  width: 685px;
  height: 510px;
  margin: 70px 17px 0 -8px;
  background: url("/images/login_img.png");
  background-repeat: no-repeat;
  background-size: 100%;
}

.single-container .login-layout {
  width: 440px;
  margin: 10px 0 20px 28px;
  padding: 45px 60px 40px 60px;
  border-radius: 12px;
  box-shadow: 0 20px 30px 10px rgb(76 76 76 / 5%);
  background-color: #fff;
}

.single-container .login-layout .title-area .title {
  font-size: 32px;
  font-weight: 800;
  display: inline-block;
}

.single-container .login-layout .title-area .language-area {
  display: inline-block;
  float: right;
}

.single-container .Notice-layout {
  width: 440px;
  margin: 0 0 10px 28px;
  padding: 12px 10px 10px 10px;
  border-radius: 12px;
  box-shadow: 0 20px 30px 10px rgb(76 76 76 / 5%);
  background-color: #fff;
  text-align: center;
}
/*
.single-container .Notice-layout a:hover {
  text-decoration: underline;
}
*/
.single-container .Notice-layout span{
  color: #7B7B7B;
  letter-spacing: -0.5px;
}

.single-container .Notice-layout a::before {
    content: url(/images/landing/icon/icon-bell.png);
    vertical-align: middle;
}

.warningMsg {
  font-size: 13px;
  color: #f21724;
  margin-bottom: 10px;
}

.warningMsg::before {
  content: '\f071';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  color: #f21724;
  margin-right: 2px;
}

/* 상단바 */
.navbar-wrapper {
  background: #ffffff;
  width: 100%;
  position: sticky;
  top: 0px;
  z-index: 1;
  border-bottom: solid 1px #DEE2E6
}

.navbar {
  height: 85px;
  margin: 0 auto;
}

.navbar .navbar-logo {
  display: block;
  float: left;
  padding-top: 25px;
  padding-left: 30px;
}

.navbar .navbar-logo img {
  width: 140px;
}

/* 회원가입 */
.title-wrapper .title {
  font-size: 30px;
  font-weight: 800;
  text-align: center;
}

.title-wrapper .message {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.title-wrapper .message span{
  font-size: 16px;
  font-weight: 400;
  color: #989797;
}

.joinstep-wrapper {
  margin: 50px 0 40px 0;
}

.joinstep-wrapper ul {
  list-style: none;
}

.joinstep-wrapper ul li {
  float: left;
}

.joinstep-wrapper .line div {
  width: 50px;
  height: 1px;
  background-color: #B6BDC5;
  margin: 40px 13px 0 13px;
}

.joinstep-wrapper .on div {
  width : 84px;
  height : 84px;
  border-radius: 50%;
  background-color: #1D9ADD;
  font-size: 23px;
  color: #ffffff;
  text-align: center;
  padding-top: 28px;
  box-sizing: border-box;
}

.joinstep-wrapper .off div {
  width : 84px;
  height : 84px;
  border-radius: 50%;
  background-color: #F8F9FA;
  border: 1px solid #B6BDC5;
  font-size: 23px;
  text-align: center;
  padding-top: 28px;
  box-sizing: border-box;
}

.joinstep-wrapper p {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin-top: 13px;
}

.join-layout {
  box-sizing : border-box;
  width: 1105px;
  padding: 55px;
  border-radius: 12px;
  box-shadow: 0 20px 30px 10px rgb(76 76 76 / 2%);
  background-color: #fff;
  margin: 40px 0 60px 0;
}

.join-layout2 {
  box-sizing : border-box;
  width: 850px;
  padding: 55px 72px;
  border-radius: 12px;
  box-shadow: 0 20px 30px 10px rgb(76 76 76 / 2%);
  background-color: #fff;
  margin: 40px 0 60px 0;
}

.join-layout3 {
  box-sizing : border-box;
  width: 700px;
  padding: 80px 72px;
  border-radius: 12px;
  box-shadow: 0 20px 30px 10px rgb(76 76 76 / 2%);
  background-color: #fff;
  margin: 20px 0 60px 0;
}

.join-layout .join-textarea .title {
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}

.join-layout .join-textarea textarea {
  box-sizing : border-box;
  width: 990px;
  height: 250px;
  background-color: #fff;
  border: 1px solid #DEE2E6;
  font-size: 16px;
  padding: 20px;
  font-family: 'Pretendard';
  font-weight: 300;
}
.join-layout .join-textarea textarea:focus {
  outline: none;
}

.join-layout2 .warningMsg {
  font-size: 13px;
  margin: 2px 0px 0px 148px;
  color: #f21724;
}

.join-layout2 .warningMsg::before {
  content: '\f071';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  color: #f21724;
  margin-right: 2px;
}

.join-layout2 .successMsg {
  font-size: 13px;
  margin: 2px 0px 0px 148px;
  color: #1D9ADD;
}

.join-layout2 .successMsg::before {
  content: '\f058';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  color: #1D9ADD;
  margin-right: 2px;
}

.join-layout2 .input-area .lebel-area {
  width: 140px;
  display: inline-block;
  font-weight: 500;
  text-align: left;
}

.btn-area {
  text-align: center;
}

/* 모달창 */
.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.modal .modal-blocker {
  background: rgba(0, 0, 0, .3);
  z-index: 0;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.modal .modal-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal .modal-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
}

.modal .modal-subtitle {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: #989797;
  margin-top: 16px;
}

.modal .modal-text {
  font-size: 17px;
  font-weight: 600;
  text-align: center;
}

.modal .madal-close {
  position: absolute;
  right: 32px;
  cursor: pointer;
  font-size: 20px;
  z-index: 102;
  top: 30px;
}

.modal .warningMsg {
  font-size: 13px;
  margin: 2px 0px 0px 137px;
  color: #f21724;
}

.modal .warningMsg::before {
  content: '\f071';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  color: #f21724;
  margin-right: 2px;
}

.modal .successMsg {
  font-size: 13px;
  margin: 2px 0px 0px 137px;
  color: #1D9ADD;
}

.modal .successMsg::before {
  content: '\f058';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  color: #1D9ADD;
  margin-right: 2px;
}

.example .warningMsg {
  font-size: 13px;
  margin: 2px 0px 0px 137px;
  color: #f21724;
}

.example .warningMsg::before {
  content: '\f071';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  color: #f21724;
  margin-right: 2px;
}

.example .successMsg {
  font-size: 13px;
  margin: 2px 0px 0px 137px;
  color: #1D9ADD;
}

.example .successMsg::before {
  content: '\f058';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  color: #1D9ADD;
  margin-right: 2px;
}

.modal .input-area .lebel-area {
  width: 130px;
  display: inline-block;
  font-weight: 500;
}

.modal-join {
  display: none;
}

.modal-join .madal-container {
  width: 657px;
  height: 770px;
  position: relative;
  background: #fff;
  padding: 60px 32px 60px 50px;
  border: 1px solid #dbdbdb;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
}

.modal-join .modal-body {
  margin: 45px 0px;
  height: 577px;
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-findid {
  display: none;
}

.modal-findid .madal-container {
  width: 636px;
  position: relative;
  background: #fff;
  padding: 60px 50px 40px 50px;
  border: 1px solid #dbdbdb;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
}

.modal-findid .modal-body {
  margin: 18px 0px;
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-findpass {
  display: none;
}

.modal-findpass .madal-container {
  width: 636px;
  position: relative;
  background: #fff;
  padding: 60px 50px 40px 50px;
  border: 1px solid #dbdbdb;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
}

.modal-findpass .modal-body {
  margin: 18px 0px;
  overflow-x: hidden;
  overflow-y: auto;
}


.modal-message {
  display: none;
}

.modal-message .madal-container {
  width: 420px;
  position: relative;
  background: #fff;
  padding: 80px 50px 80px 50px;
  border: 1px solid #dbdbdb;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
}

.modal-message .modal-body {
  margin: 18px 0px;
  overflow-x: hidden;
  overflow-y: auto;
}
