#add-opinion-form input {
    width: 90%;
    height: 3em;
    border: black solid 1px;
}

#add-opinion-form textarea {
    width: 90%;
    height: 8em;
}

#add-opinion-form input[type="submit"] {
    width: 90%;
    height: 3em;
    color: white;
    background-color: black;
    cursor: pointer;
    border: black solid 1px;
    margin-top: 2em;
    padding: 0
}

p.opinion-error {
    padding: 1em;
    width: 100%;
    background: red;
    color: white!important;
    font-weight: bolder;
    position: absolute;
    top:0;
    left:0;
    height:3em;
    z-index: 100;
}

p.opinion-success {
    padding: 1em;
    width: 100%;
    height:3em;
    background: green;
    color: white!important;
    font-weight: bolder;
    position: absolute;
    top:0;
    z-index: 100;
    left:0;
}

