.login-body{background: white;}

.login-title{font-size: 50px;}

.backred {
    background: repeating-linear-gradient(
        45deg,
        #ffffff,
        #ffffff 5px,
        #fffafa 5px,
        #ffe2e2 10px
    );
}
.backgreen {
    background: repeating-linear-gradient(
        45deg,
        #ffffff,
        #ffffff 5px,
        #e2ffe2 5px,
        #e2ffe2 10px
    );
}
.backorange {
    background: repeating-linear-gradient(
        45deg,
        #ffffff,
        #ffffff 5px,
        #ffefe2 5px,
        #ffefe2 10px
    );
}
.backdanger{
    -webkit-animation: dangerblinker 1s infinite;  /* Safari 4+ */
    -moz-animation: dangerblinker 1s infinite;  /* Fx 5+ */
    -o-animation: dangerblinker 1s infinite;  /* Opera 12+ */
    animation: dangerblinker 1s infinite;  /* IE 10+, Fx 29+ */
}
@-webkit-keyframes dangerblinker {
    0%, 49% {
        background-color: rgb(255, 255, 255);
    }
    50%, 100% {
        background-color: #e50000;
    }
}
