@charset "utf-8";

/* =============================================
   회원가입 페이지 전용 스타일
   참조 JSP: register.jsp
   ============================================= */

@import url("common.css");

/* -----------------------------------------------
   페이지 제목 영역 (.contTitWrap)
----------------------------------------------- */
.contTitWrap {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    background: #fff;
    border: 1px solid #d6ecfe;
    border-left: 3px solid #006edb;
    color: #006edb;
    padding: 11px 0 11px 13px;
    box-sizing: border-box;
    margin: 15px auto 10px;
}

.contTitWrap .contTitBtn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(0%, -50%);
    margin-left: 0;
}

/* -----------------------------------------------
   버튼 색상
----------------------------------------------- */
button.save   { background: #006edb; }
button.cancel { background: #555; }

/* -----------------------------------------------
   서브페이지 래퍼 (.subPageWarp)
----------------------------------------------- */
.subPageWarp {
    padding: 20px;
    box-sizing: border-box;
    min-height: 350px;
    background: #ffffff;
    border-radius: 17px 17px 17px 17px;
}

/* -----------------------------------------------
   입력 필드 색상
----------------------------------------------- */
.inputTxt         { color: #000; }
.inputTxt[readonly],
.inputTxt:disabled { color: #aaa; }

/* -----------------------------------------------
   로그인 통합 컨테이너 (.unitedLoginCont / .unitedLoginTxt)
   register step3 완료 화면에서 사용
----------------------------------------------- */
.unitedLoginCont {
    width: 500px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    background: #fff;
    border-top: 2px solid #006edb;
}
.unitedLoginCont .unitedLoginTxt {
	text-align:center;
    border: 1px solid #d6ecfe;
    background: #f6faff;
    color: #333;
    padding: 10px;
    border-radius: 7px;
    box-sizing: border-box;
    margin: 10px 0 10px;
    font-size: 13px;
}

/* -----------------------------------------------
   계정찾기 버튼 영역 (.account-btn-area)
   register step3 완료 화면에서 사용
----------------------------------------------- */
.account-btn-area { margin-top: 30px; text-align: center; }
.account-btn-area button {
    min-width: 120px;
    height: 45px;
    font-size: 16px;
    border-radius: 5px;
}

/* -----------------------------------------------
   레이아웃: mCont 너비 50% 제한
----------------------------------------------- */
.visualTitle{
	padding:40px 0;
	background: linear-gradient(137deg, #2A8CE4 22.21%, #0055A2 89.17%);
}
.subContWrap .mCont h1{	
	color:#fff;
	max-width:120rem;
	margin:0 auto;
	padding:0 7.5rem;
	
}
.subPageWarp{
	max-width: 108rem;
    margin: 0 auto;
}
@media all and (max-width:767px){
	.visualTitle{
		padding:20px 0;
	}
	.subContWrap .mCont h1{
		padding:0 1.25rem;
	}
}
/* -----------------------------------------------
   기존 하위 서비스 계정 알림 (PASS 인증 후)
----------------------------------------------- */
.register-existing-alert-wrap {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
.register-existing-alert-backdrop {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}
.register-existing-alert-box {
    position: relative;
    background: #fff;
    border: 1px solid #d6ecfe;
    border-left: 4px solid #006edb;
    border-radius: 8px;
    padding: 24px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    box-sizing: border-box;
}
.register-existing-alert-title {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: bold;
    color: #006edb;
}
.register-existing-alert-list {
    margin-bottom: 16px;
}
.register-existing-alert-item {
    margin: 0 0 8px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}
.register-existing-alert-item:last-child {
    margin-bottom: 0;
}
.register-existing-alert-guide {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    background: #f6faff;
    border: 1px solid #d6ecfe;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 20px;
}
.register-existing-alert-actions {
    text-align: center;
}
.register-existing-alert-actions button {
    min-width: 100px;
}

/* -----------------------------------------------
   반응형
----------------------------------------------- */
@media all and (orientation: portrait), all and (max-width: 780px) {
    .subContWrap .mCont { width: 100%;}
}
