/* ---------------- - Find ID Layout - ---------------- */

.find_id_page {
    width: 100%;
    max-width: 1310px;
    margin: 50px auto;
}

.page_title {
    width: 980px;
    margin: 0 auto;
    font-size: 28px;
    font-weight: 600;
    color: #44667A;
    margin-bottom: 30px;
    text-align: left;
}

/* 메인 폼 컨테이너*/
.find_id_wrap {
    width: 980px;
    height: 320px;
    margin: 0 auto 20px;
    padding: 40px;
    box-sizing: border-box;
    border: 2px solid #D9D9D9;
    box-sizing: border-box;
    border-radius: 20px;
    box-shadow: 2px 2px 6px #D9D9D9;
    justify-content: space-between;
    position: relative;
    text-align: left;
}

.find_id_wrap>p {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
    text-align: center;
}

.result_box {
    width: 600px;
    margin: 20px auto 0;
    padding: 30px 20px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 10px;
    text-align: center;
}

.result_box p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.result_box span {
    font-size: 28px;
    font-weight: 700;
    color: #44667A;
    line-height: 1.5;
}

.result_box span:last-child {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin-left: 5px;
}

.find_id_page {
    position: relative;
}

.button_group {
    width: 980px;
    margin: 0 auto;
    text-align: right;
    padding-top: 20px;
}

.btn_reset_pw {
    display: inline-block;
    padding: 12px 25px;
    background-color: #fff;
    color: #44667A;
    border: 1px solid #C8E0EC;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s;
    margin-right: 10px;
}

.btn_reset_pw:hover {
    background-color: #F8F8F8;
    border-color: #44667A;
}


.btn_login {
    display: inline-block;
    padding: 12px 25px;
    background-color: #5F9EA0;
    color: #fff;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.btn_login:hover {
    background-color: #447C7E;
}

.go_login {
    padding: 12px 45px;
}

/* ---------------- - pw_result - ---------------- */

/* find_result.css */

.find_result_page {
    padding: 80px 0;
    width: 600px;
    margin: 0 auto;
}

.page_title {
    width: 600px;
    color: #44667A;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 40px;
    font-size: 28px;
}

.reset_box {
    background: #fff;
    border: 1px solid #D9D9D9;
    border-radius: 20px;
    padding: 40px;
}

.reset_guide {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

.reset_guide span {
    font-size: 13px;
    color: #999;
}

/* 입력 리스트 */
.input_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input_row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input_label {
    font-weight: 600;
    color: #444;
    font-size: 15px;
}

.input_field_box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.input_text {
    flex: 1;
    height: 48px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 0 15px;
    font-size: 15px;
}

/* 버튼 스타일 */
.sub_btn {
    width: 100px;
    height: 48px;
    border: 1px solid #44667A;
    background: #fff;
    color: #44667A;
    border-radius: 10px;
    cursor: pointer;
}

.main_btn {
    width: 100%;
    height: 54px;
    background: #5F9EA0;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}

.link_btn {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #888;
    font-size: 14px;
    text-decoration: underline;
}

/* 메시지 */
.msg_box {
    flex-basis: 100%;
}

.msg {
    font-size: 13px;
    margin-top: 5px;
}

.msg.success {
    color: green;
}

.msg.error {
    color: red;
}

.msg.hidden {
    display: none;
}