
/* Ajuste 404: buscador integrado al estilo del theme */
.dw404-search-form{
    display:flex;
    align-items:center;
    gap:10px;
    width:min(100%, 720px);
    margin:34px auto 0;
    padding:8px;
    border-radius:22px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.16);
    backdrop-filter:blur(12px);
    box-shadow:0 18px 46px rgba(0,0,0,.14);
}

.dw404-search-form input[type="search"]{
    flex:1;
    width:100%;
    min-height:54px;
    padding:0 18px;
    border:0;
    outline:none;
    border-radius:17px;
    background:#fff;
    color:#07192d;
    font-size:16px;
    font-weight:700;
}

.dw404-search-form input[type="search"]::placeholder{
    color:#7b8ba0;
    font-weight:700;
}

.dw404-search-form button{
    min-height:54px;
    padding:0 22px;
    border:0;
    border-radius:17px;
    background:#0974fe;
    color:#fff;
    font-weight:950;
    cursor:pointer;
    transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.dw404-search-form button:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 32px rgba(9,116,254,.35);
    background:#0069f0;
}

.dw404-actions{
    margin-top:26px !important;
}

@media(max-width:620px){
    .dw404-search-form{
        flex-direction:column;
        align-items:stretch;
    }

    .dw404-search-form button{
        width:100%;
    }
}
