/* 비번찾기  페이지 css */
/* 주의 이상한점 === 로그인 페이지에 뭐때문인지 모르겠지만 
p 에 기본으로 마진이 적용되어있음 */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-y: hidden;
}

.header_area {
  background-color: #333333;
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  height: 102px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0px;
}
.header_logo > h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.6px;

  margin: 0px !important;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
p {
  margin: 0px;
}

.login_wrapper {
  flex: 1 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.find_password_box {
  margin: 0 auto;
  width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.find_password_header {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.find_password_header_item {
  flex: 1;
  text-align: center;
  padding: 0px 0px 12px 0px;
  cursor: pointer;
  font-size: 32px;
  font-weight: 700;

  /* 기본 (선택 x) */
  color: #b6b6b6;
  border-bottom: 1px solid #e5e5e5;
}

.find_password_header_item.active {
  color: #333333;
  border-bottom: 2px solid #333333;
}

.input_text_box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.login_label {
  font-size: 16px;
  font-weight: 500;
  color: #646464;
  letter-spacing: -0.4px;
  margin: 0px !important;
}

.login_input {
  box-sizing: border-box;
  width: 100%;
  height: 48px;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  background-color: transparent;
  padding: 0px 12px;

  /* input 속 글자 스타일 */
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.4px;
}
.login_input:hover {
  background-color: #f8f8f8;
}
.login_input:focus {
  border: 1px solid #333333;
}

/* 로그인 버튼 부분 */
.link_btn {
  margin-top: 12px;
  width: 100%;
  height: 52px;
  border-radius: 4px;
  border: none;
  background-color: #b6b6b6;

  /* 버튼 속 글자 스타일 */
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.4px;
  cursor: pointer;
}

/* 고객센터 문의 부분 */
.information_text {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.35px;
  color: #a0a0a0;
}

/* a태그 기본 속성 제거 */
a {
  text-decoration: none;
  color: inherit;
}

/* 버튼이 엑티브 되었을 떄 */
.link_btn.active {
  background-color: #333333;
}

/* 사용문의 부분 */
.login_question {
  font-size: 14px;
  color: #a0a0a0;
  letter-spacing: -0.35px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  margin-top: 4px;
  margin-bottom: 0px;
}

/* 아이디 알려주는 멘트 부분 */
.find_id_text {
  display: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.4px;
  color: #333333;
  margin-bottom: -10px;
}
/* 일치하지 않을 때 나오는 멘트 부분 */
.find_error_text {
  display: none;
  font-weight: 500;
  font-size: 16px;
  color: red;
  margin-bottom: -12px;
}

/* 아이디 보유 내역 중앙 박스 스타일 */
.id_holding_fullscreen {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.id_holding_content {
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.id_holding_title {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  margin-bottom: 20px;
  letter-spacing: -0.4px;
}

.id_list_container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-bottom: 20px;
}

.id_item {
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.id_value {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  letter-spacing: -0.4px;
  line-height: 19px;
}

.id_date {
  font-size: 14px;
  font-weight: 500;
  color: #646464;
  letter-spacing: -0.35px;
  line-height: 16px;
}

/* 하단 링크 스타일 */
.bottom_links {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #646464;
  margin-top: 20px;
  padding-top: 16px;
}

.bottom_link {
  font-size: 16px;
  font-weight: 500;
  color: #646464;
  text-decoration: none;
  letter-spacing: -0.4px;
  line-height: 19px;
}

/* 페이지네이션 스타일 */
.pagination_container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  margin-top: 4px;
}

.pagination_btn {
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}

.page_numbers {
  display: flex;
  gap: 8px;
}

.page_number {
  width: 32px;
  height: 32px;
  border: 1px solid #e5e5e5;
  background-color: #ffffff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: #b3b3b3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page_number.active {
  background-color: #333333;
  color: #ffffff;
  border-color: #333333;
}

h3 {
  margin: 0px;
}
