 /* 모달 컨테이너 */
    #findModal .modal-content {
        border-radius: 20px; /* 조금 더 둥글게 */
        background-color: #fff;
        border: none;
    }

    /* 상단 제목 텍스트 */
    #findModal .modal-title {
        color: #000;
        font-weight: 600;
        font-size: 1.6rem;
    }

    /* 공통 카드 버튼 스타일 */
    #findModal .find-card {
        aspect-ratio: 1 / 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 15px;
        transition: all 0.2s ease-in-out;
        cursor: pointer;
        text-decoration: none;
        gap: 12px;
        margin: 5px;
    }

    /* 1. 아이디 찾기 (레드 배경) */
    #findModal .btn-red-fill {
        background-color: #b11d23;
        color: #ffffff;
        border: none;
        width: 200px;
    }
    #findModal .btn-red-fill:hover {
        background-color: #8e171c;
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(177, 29, 35, 0.2);
    }

    /* 2. 비밀번호 찾기 (화이트 배경 + 레드 보더) */
    #findModal .btn-red-outline {
        background-color: #ffffff;
        color: #b11d23;
        border: 2.5px solid #b11d23; /* 보더 두께 살짝 강조 */
        width: 200px;
    }
    #findModal .btn-red-outline:hover {
        background-color: #fff8f8;
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    }

    /* 폰트어썸 아이콘 크기 조정 */
    #findModal .find-card i {
        font-size: 3.2rem; /* 폰트어썸 두께에 맞춰 최적화 */
    }

    /* 텍스트 스타일 */
    #findModal .find-card span {
        font-size: 1.15rem;
        font-weight: 700;
    }

    /* 하단 닫기 버튼 */
    #findModal .footer-close-btn {
        color: #999;
        font-size: 1rem;
        text-decoration: none;
        font-weight: 500;
        background: none;
        border: none;
        padding-bottom: 25px;
        transition: color 0.2s;
    }
    #findModal .footer-close-btn:hover {
        color: #333;
    }

    /* 부트스트랩 기본 X 버튼 커스텀 */
    #findModal .btn-close-custom {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #000;
        position: absolute;
        right: 20px;
        top: 15px;
        cursor: pointer;
        z-index: 100;
    }