/* 전체 레이아웃 */
body {
    background:#f5f6f8;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans KR",
    Helvetica, Arial, sans-serif;
    margin:0;
    padding:0;
}

/* 공통 카드 박스 */
.find-wrap {
    max-width:420px;
    margin:60px auto;
    background:#fff;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,0.06);
    padding:35px 30px 40px;
    text-align:center;
}

.find-title {
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
    color:#222;
}

.find-desc {
    font-size:15px;
    line-height:1.7;
    color:#555;
    margin-bottom:30px;
}

/* 공통 버튼 */
.btn-primary {
    width:100%;
    padding:15px 0;
    background:#4a82ff;
    color:#fff;
    border-radius:8px;
    font-size:17px;
    font-weight:600;
    border:none;
    cursor:pointer;
    display:block;
    text-decoration:none;
    text-align:center;
}

.btn-primary:hover {
    opacity:0.92;
}

/* 결과 박스 */
.result-box {
    margin:25px 0;
    padding:15px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:18px;
    text-align:center;
    background:#fafafa;
}

/* 입력폼 스타일 */
.input-box {
    width:100%;
    padding:12px;
    border:1px solid #ccc;
    border-radius:8px;
    margin-bottom:20px;
    font-size:15px;
}

/* 모바일 대응 */
@media (max-width:480px) {
    .find-wrap {
        margin:40px 15px;
        padding:30px 20px;
    }
}

.find-logo {
    width: 100% !important;
    text-align: center !important;
    margin: 25px 0px 20px 0px !important;
}

.find-logo img {
    display: inline-block !important;   /* block → inline-block으로 강제 */
    margin: 0 auto !important;
    max-height: 45px !important;
    width: auto !important;
}
.find-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    text-align: center;
    margin-bottom: 25px;
}

.find-notice {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    color: #4a82ff;
}


