body, html {
    height: 100%;
}
  
.bg {
    /* The image used */
    background-image: url("../../assets/images/pexels-dominik-ruhl-7425283.jpg");

    /* Full height */
    height: 100%;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.login-page,
.register-page {
    background-color: #000000;
    color: #eee;
}

.login-logo a,
.register-logo a {
    color: #fff;
}

div.bounce-out {
    -webkit-animation: bounce-out .5s linear 0s 1 normal;
    animation: bounce-out .5s linear 0s 1 normal;
}

@-webkit-keyframes bounce-out {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        transform: scale(0.3);
    }
}

@keyframes bounce-out {
    0% {
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.3);
    }
}

#background-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100% !important;
    max-height: 100% !important;
    z-index: -1000;
    overflow: hidden;
    object-fit: cover;
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -o-filter: blur(10px);
    -ms-filter: blur(10px);
    filter: blur(10px) grayscale(.75);
}

.login-box {
    margin: 7% auto;
}

.login-box-body,
.register-box-body {
    background: #fff;
    padding: 20px;
    border-top: 0;
    color: #666;
}
#result.error{
    font-weight: bold;
    color: red;
}
.login-box-body .form-control-feedback,
.register-box-body .form-control-feedback {
    color: #777;
}
.login-result {
    background-color: #fff;
    color: #4c4c4c; 
    padding: 20px; 
    font-size: 36px; 
    text-align: center;
    font-weight: bold; 
    border:2px solid #4c4c4c; 
    border-radius:20px;
}