/*--------------------------------------------------------------------------*\
    Forms
\*--------------------------------------------------------------------------*/

form {
    /*box*/
    position: relative;
    /* ensures that float elements in the form are not outside the form */
    display: inline-block;

    /*transition*/
    /* slight opacity when submitting forms */
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}