#note {
    position: absolute;
    z-index: 101;
    top: 2rem;
    left: 8rem;
    right: 8rem;
    text-align: center;
    line-height: 2.5;
    overflow: hidden;
    -webkit-box-shadow: 0 0 5px black;
    -moz-box-shadow: 0 0 5px black;
    box-shadow: 0 0 5px black;
    color: #FFF;
    display: none;
    -webkit-animation: slideDown 5s infinite;
    -moz-animation: slideDown 5s infinite;
}

.error {
    background: #963232;
}

.success {
    background: #0d680d;
}

@-webkit-keyframes slideDown {
    0%,
    100% {
        -webkit-transform: translateY(-50px);
    }
    10%,
    90% {
        -webkit-transform: translateY(0px);
    }
}

@-moz-keyframes slideDown {
    0%,
    100% {
        -moz-transform: translateY(-50px);
    }
    10%,
    90% {
        -moz-transform: translateY(0px);
    }
}