@charset "UTF-8";

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Pretendard', 'Noto Sans KR', Arial, sans-serif;
  background: #f3f7fb;
  color: #172033;
}
a { text-decoration: none; color: inherit; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 46px;
  padding: 0 22px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 900;
}
.btn-primary { background: #fff; color: #0f57c8; }
.btn-outline { border: 1px solid rgba(255,255,255,.55); color: #fff; }


/* 모달 전체 */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

/* 모달 박스 */
.modal-content {
  width: 400px;
  max-width: 90%;
  margin: 10% auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  position: relative;
}

/* 닫기 버튼 */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/* input */
.input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
}

/* 로그인 버튼 */
.btn-submit {
  width: 100%;
  padding: 12px;
  background: #0c477b;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
}
/* 로그인 모달 배경 */
.common-modal-bg {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

/* 로그인 모달 박스 */
.common-modal-wrap {
  position: relative;
  width: 400px;
  max-width: calc(100% - 32px);
  margin: 120px auto 0;
  background: #fff;
  padding: 32px 28px;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
}


.none { display: none !important; }
.text-left { text-align: left !important; }
.center { justify-content: center; }

.mt5 { margin-top: 5px !important; }
.mt6 { margin-top: 6px !important; }
.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt40 { margin-top: 40px !important; }
.mt50 { margin-top: 50px !important; }
.mt60 { margin-top: 60px !important; }
.mt70 { margin-top: 70px !important; }
.mt100 { margin-top: 100px !important; }

.mb1 { margin-bottom: 1px !important; }
.mb6 { margin-bottom: 6px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb50 { margin-bottom: 50px !important; }
