.bd-search-box{
    width: 575px;
    margin:auto;
    padding:30px;
    background:#f3f4f6;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

.bd-search-input{
    display:flex;
    align-items:center;
    background:#fff;
    border:1px solid #d1d5db;
    border-radius:12px;
    padding:6px 18px;
    margin-bottom: 10px;
}

.bd-search-input input{
    border:none;
    outline:none;
    font-size:22px;
    width:100%;
    background:transparent;
    color:#111827;
}

.bd-search-icon{
    width:20px;
    height:20px;
    margin-right:10px;
    color:#6b7280;
    flex:0 0 auto;
}

.bd-search-button{
    width:100%;
    padding:8px 16px;
    border:none;
    border-radius:12px;
    background:#2E3191;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer !important;
    margin-top:10px;
    text-transform:uppercase !important;
}

.bd-search-button:hover{
    background:#1f4ec3;
}

.bd-search-examples{
    margin-top:14px;
    font-size:14px;
    color:#6b7280;
    line-height:1.6;
}

.bd-search-examples a{
    color:#2f62d6;
    text-decoration:none;
    margin:0 3px;
}

.bd-search-examples a:hover{
    text-decoration:underline;
}

@media (max-width: 425px){
    .bd-search-input{
        margin-bottom:10px;
    }

    .bd-search-input input{
        font-size:18px;
    }

    .bd-search-box{
        width: 100%;
        padding:10px 5px;
    }

    .bd-search-examples{
        font-size:13px;
    }
}