


/* 아이디 찾기 */
.find-wrap {
    width: 1120px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.find-title {
    font-family: "LINE Seed Sans KR";
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.find-desc {
    font-family: "LINE Seed Sans KR";
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.find-desc span {
    color: #298282;
    text-decoration: underline;
}

.find-divider {
    border: none;
    border-top: 1px solid #000;
    margin: 32px 0;
}

/* 폼 레이아웃 */
.find-form {
    display: grid;
    grid-template-columns: 200px 1fr;
    row-gap: 8px;
    padding-left: 160px;
    padding-right: 160px;
}

.form-row {
    display: contents;
}

.form-row label {
    font-family: "LINE Seed Sans KR";
    font-size: 15px;
    color: #555;
    font-weight: 500;
    align-self: center;
}

.req {
    color: #ef4444;
}

/* 기본 인풋 */
.form-row input,
.form-row select {
    height: 52px;
    width: 100%;
    border: 1px solid #D1D2D3;
    border-radius: 4px;
    padding: 16px 10px;
    font-size: 15px;
    font-family: "LINE Seed Sans KR";
    color: #4b4b4b;
    transition: all 0.2s ease;
}

.form-row input:hover,
.form-row select:hover {
    background: #F6F8FB;
}

.form-row input:focus,
.form-row select:focus {
    outline: none;
    border-color: #a7b0c0;
    box-shadow: 0 0 0 2px rgba(19, 62, 135, 0.15);
}

/* 이메일 구조 */
.email-flex {
    display: flex;
    gap: 8px;
    align-items: center;
}

.email-id { 

}
.email-domain {
    width: 200px;
    background: #EAEDF2;
    cursor: pointer;
    transition: all 0.2s ease;
}

.email-domain:hover {
    background: #dfe1e6;
}

.at {
    color: #4b4b4b;
    font-family: "LINE Seed Sans KR";
    font-size: 14px;
}

/* 연락처, 사업자등록번호 */
.find-form .triple .flex {
    display: flex;
    gap: 8px;
}

.find-form .triple .flex input {
    flex: 1;
    gap: 8px;
}

/* 인풋 공통 (join과 동일하게) */
.find-form input,
.find-form select {
    width: 100%;
    height: 52px;
    border: 1px solid #D1D2D3;
    border-radius: 4px;
    padding: 16px 10px;

    color: #4B4B4B;
    font-size: 15px;
    font-weight: 400;
    font-family: "LINE Seed Sans KR";
    opacity: 0.8;
    transition: all 0.2s ease;
}

.find-form input:hover,
.find-form select:hover {
    background: #F6F8FB;
}

.find-form input:focus,
.find-form select:focus {
    outline: none;
    border-color: #a7b0c0;
    box-shadow: 0 0 0 2px rgba(19, 62, 135, 0.15);
}


/* 버튼 영역 */
.find-btn-area {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.find-cancel,
.find-submit {
    width: 240px;
    height: 48px;
    border-radius: 8px;
    font-family: "LINE Seed Sans KR";
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

/* 취소 버튼 */
.find-cancel {
    border: 1px solid #D1D2D3;
    background: #fff;
    color: #727887;
    transition: all 0.2s ease;
}

.find-cancel:hover {
    background: #eee;
}

/* 찾기 버튼 */
.find-submit {
    background: #264993;
    color: #fff;
    font-weight: 700;
    font-family: "LINE Seed Sans KR";
    border: none;
    transition: all 0.2s ease;
}

.find-submit:hover {
    background:
        linear-gradient(0deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.2)),
        #264993;
}

.find-submit:focus,
.find-submit:active {
    outline: none !important;
    box-shadow: none !important;
}

.find-cancel:focus,
.find-cancel:active {
    outline: none !important;
    box-shadow: none !important;
}


/* 아이디 찾기 결과 */
.find-result-box {
    text-align: center;
    padding: 32px 0;
}

.find-company {
    color: #4B4B4B;
    font-size: 15px;
    font-family: "LINE Seed Sans KR";
    line-height: 24px;
    margin-bottom: 12px;
}

.find-id {
    font-size: 28px;
    font-family: "LINE Seed Sans KR";
    font-weight: 700;
    color: #264993;
    margin-bottom: 12px;
}

.find-text {
    color: #4B4B4B;
    font-size: 15px;
    font-family: "LINE Seed Sans KR";
}

/* ----------------------------------------------------------
   MOBILE (max-width: 767px)
---------------------------------------------------------- */
@media (max-width: 767px) {

    .find-wrap {
        width: 100%;
    }

    .find-desc {
        font-size: 14px;
        font-family: "LINE Seed Sans KR";
        line-height: 22px;
        text-align: left;
        margin-bottom: 24px;
    }

    .find-form {
        padding: 0 20px;
        grid-template-columns: 1fr;
    }

    .form-row label {
        font-size: 14px;
        font-family: "LINE Seed Sans KR";
        margin-bottom: 4px;
    }

    .form-row input,
    .form-row select {
        height: 48px;
        font-size: 14px;
        font-family: "LINE Seed Sans KR";
        padding: 12px 10px;
    }

    /* ===== 이메일 (가로 한 줄 유지) ===== */
    .email-flex {
        flex-direction: row !important;
        align-items: center;
        gap: 8px;
        width: 100%;
    }

    .email-id,
    .email-domain {
        flex: 1 1 0;
        width: 100%;
        height: 48px;
        padding: 12px 10px;
        font-family: "LINE Seed Sans KR";
        font-size: 14px;
    }

    .at {
        white-space: nowrap;
        font-size: 14px;
        font-family: "LINE Seed Sans KR";
        padding: 0 4px;
    }

    /* ===== 연락처 (triple) 한 줄 ===== */
    .find-form .triple .flex {
        flex-direction: row !important;
        gap: 8px;
        width: 100%;
    }

    .find-form .triple .flex input {
        flex: 1 1 0;
        width: 100%;
        height: 48px;
        font-size: 14px;
        font-family: "LINE Seed Sans KR";
        padding: 12px 10px;
    }

    /* ===== 버튼 영역 (가로 한 줄) ===== */
    .find-btn-area {
        flex-direction: row !important;
        justify-content: center;
        gap: 8px;
        padding: 0 12px;
        margin-top: 32px;
    }

    .find-cancel,
    .find-submit {
        flex: 1 1 0;
        width: 100%;
        height: 48px;
        font-size: 14px;
        font-family: "LINE Seed Sans KR";
        max-width: none;
    }

    /* ===== 결과 영역 ===== */
    .find-result-box {
        padding: 24px 0;
    }

    .find-company {
        font-size: 14px;
        font-family: "LINE Seed Sans KR";
        margin-bottom: 8px;
    }

    .find-id {
        font-size: 24px;
        font-family: "LINE Seed Sans KR";
        margin-bottom: 8px;
    }

    .find-text {
        font-size: 14px;
        font-family: "LINE Seed Sans KR";
        line-height: 22px;
    }
}
