/* ============================================================
   find_userid_password_v3.css — 아이디/비밀번호 찾기 UI 현대화
   (Bootstrap 5.3.5 기반, 기존 색상 체계 유지)
   CHG-002, CHG-003 공통
   ============================================================ */

/* --- Bootstrap 기본 스타일 리셋 (마스터 페이지 영향 방지) --- */
#top_bar ul {
	padding-left: 0;
	margin-bottom: 0;
}

/* --- 페이지 타이틀 배너 (기존 위치 그대로 유지) --- */
#page_title {
	position: relative;
	background-image: url(/images/common/title/main_title.png);
	height: 112px;
}
#page_title > #page_title_text {
	position: absolute;
	top: 30%;
	left: 8%;
	font-size: 24pt;
	font-weight: bold;
}

/* --- 페이지 레이아웃 (2컬럼, 기존 aside 위치/정렬 유지) --- */
#page_wrap {
	display: flex;
	min-height: 400px;
}
#page_wrap > #aside {
	width: 210px;
	flex-shrink: 0;
	padding-top: 20px;
	padding-left: 30px;
	font-size: 12pt;
	line-height: 40px;
}
#page_wrap > #aside ul {
	padding-left: 0;
	margin-bottom: 0;
}
#page_wrap > #section {
	flex: 1;
	padding: 65px 35px 15px 35px;
	max-width: 790px;
	line-height: 35px;
}

/* --- 안내 텍스트 --- */
.info-txt {
	line-height: 1.7;
	font-size: 11pt;
	color: #333;
	margin-bottom: 20px;
}

/* --- 입력 필드 영역 --- */
.find-form .field-row {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}
.find-form .field-label {
	width: 145px;
	font-size: 11pt;
	flex-shrink: 0;
	padding-right: 12px;
	text-align: right;
	white-space: nowrap;
}

/* --- 버튼 영역 --- */
.btn-area {
	padding-top: 15px;
	padding-bottom: 40px;
	padding-left: 145px;
}

/* 기존 색상 유지 버튼 */
.btn-bh-primary {
	display: inline-block;
	min-width: 160px;
	padding: 8px 24px;
	font-size: 12pt;
	font-weight: normal;
	color: #ffffff;
	background-color: #0070c0;
	border: none;
	border-radius: 4px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	line-height: 1.5;
}
.btn-bh-primary:hover {
	background-color: #005a9e;
	color: #ffffff;
	text-decoration: none;
}
.btn-bh-outline {
	display: inline-block;
	min-width: 160px;
	padding: 8px 24px;
	font-size: 12pt;
	font-weight: normal;
	color: #333;
	background-color: #ffffff;
	border: 1px solid #999999;
	border-radius: 4px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	line-height: 1.5;
}
.btn-bh-outline:hover {
	background-color: #f5f5f5;
	text-decoration: none;
}
