.searchform-narrow {
    max-width:500px;
}

/* Error tooltip */
span.dnnFormMessagePS.dnnFormErrorPS {
    display: block;
    position: absolute;
    overflow: visible;
    bottom: 95%;
    left: 50%;
    width: 200px;
    margin-bottom: 0;
    padding: 10px;
    border: none;
    border-radius: 3px;
    background: rgba(255,0,0,0.75);
    font-size: 12px;
    color: #fff;
    text-align: left;
}

     span.dnnFormMessagePS.dnnFormErrorPS:after {
        position: absolute;
        bottom: -7px;
        left: 15px;
        content: "";
        width: 0;
        height: 0;
        opacity: 0.75;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 7px solid red;
    }