.member-find-body {
    margin: 0;
    min-height: 100vh;
    background: #f4f7fb;
    color: #1f2937;
    font-family: "Noto Sans KR", "Malgun Gothic", "맑은 고딕", Arial, sans-serif;
    font-size: 14px;
}

.member-find-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.member-find-card {
    width: 100%;
    max-width: 460px;
    padding: 24px;
    border: 1px solid #d8e3f0;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
}

.member-find-card-wide {
    max-width: 520px;
}

.member-find-title {
    margin: 0 0 8px;
    color: #123a63;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
}

.member-find-text {
    margin: 0 0 20px;
    color: #4b6176;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    word-break: keep-all;
}

.member-find-menu {
    display: grid;
    gap: 10px;
}

.member-find-menu a,
.member-find-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid #cfe0ea;
    border-radius: 8px;
    background: #eaf2f8;
    color: #1e4e73;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.member-find-menu a:hover,
.member-find-menu a:focus,
.member-find-btn:hover,
.member-find-btn:focus {
    background: #dcebf5;
    color: #123a63;
    text-decoration: none;
}

.member-find-form {
    display: grid;
    gap: 14px;
    margin: 0;
}

.member-find-field {
    display: grid;
    gap: 7px;
}

.member-find-field label {
    color: #123a63;
    font-size: 14px;
    font-weight: 700;
}

.member-find-field input {
    width: 100%;
    min-height: 42px;
    padding: 9px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    color: #111827;
    font-size: 15px;
    outline: none;
}

.member-find-field input:focus {
    border-color: #0a5ea8;
    box-shadow: 0 0 0 3px rgba(10, 94, 168, 0.14);
}

.member-find-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 4px;
}

.member-find-primary {
    border-color: #0a5ea8;
    background: #0a5ea8;
    color: #ffffff;
}

.member-find-primary:hover,
.member-find-primary:focus {
    background: #084a84;
    color: #ffffff;
}

.member-find-status {
    padding: 16px;
    border-radius: 8px;
    background: #f2f7fb;
    color: #334155;
    line-height: 1.6;
    text-align: center;
}

.member-find-status strong {
    color: #123a63;
}

.member-find-status-error {
    background: #fff1f2;
    color: #9f1239;
}

.member-find-status-success {
    background: #ecfdf5;
    color: #047857;
}

.member-find-small {
    margin-top: 12px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 520px) {
    .member-find-page {
        align-items: flex-start;
        padding: 12px;
    }

    .member-find-card {
        padding: 20px 16px;
        box-shadow: none;
    }

    .member-find-title {
        font-size: 20px;
    }

    .member-find-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-height: 260px) {
    .member-find-page {
        align-items: center;
        padding: 8px;
    }

    .member-find-card {
        padding: 14px;
        box-shadow: none;
    }

    .member-find-title {
        margin-bottom: 5px;
        font-size: 17px;
    }

    .member-find-text {
        margin-bottom: 12px;
        font-size: 13px;
        line-height: 1.4;
    }

    .member-find-menu {
        gap: 7px;
    }

    .member-find-menu a,
    .member-find-btn,
    .member-find-field input {
        min-height: 34px;
        font-size: 13px;
    }

    .member-find-small {
        display: none;
    }
}
