body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f6f8;
}

/* ================= NAV (최소형) ================= */
nav {
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 30px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-logo a {
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    color: black;
}

/* ================= CONTAINER ================= */
.find-container {
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: calc(100vh - 70px);
    padding: 20px;
}

/* ================= BOX ================= */
.find-box {
    width: 100%;
    max-width: 420px;

    background: white;
    padding: 40px;

    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    text-align: center;
}

.find-box h1 {
    margin-bottom: 10px;
    font-size: 24px;
}

.find-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* ================= INPUT ================= */
.find-box input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 12px;

    border: 1px solid #ddd;
    border-radius: 8px;

    font-size: 14px;
}

/* ================= BUTTON ================= */
.find-box button {
    width: 100%;
    padding: 12px;

    background: black;
    color: white;

    border: none;
    border-radius: 8px;

    font-weight: 600;
    cursor: pointer;
}

.find-box button:hover {
    opacity: 0.85;
}

/* ================= RESULT ================= */
.find-result {
    margin-top: 20px;
    padding: 15px;

    background: #f0f7ff;
    border-radius: 10px;
}

.find-result h2 {
    margin: 10px 0 0;
}

/* ================= ERROR ================= */
.find-error {
    margin-top: 15px;
    color: #d93025;
    font-size: 13px;
}

/* ================= INFO ================= */
.find-info {
    margin-top: 15px;
    font-size: 13px;
    color: #666;
}

/* ================= BACK LINK ================= */
.back-link {
    display: block;
    margin-top: 20px;

    font-size: 13px;
    color: #333;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}