#root-app {
    /* background-image: url('../../../images/v2/rootBackground_Blur.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; */
    background-color:rgba(255, 255, 255, 0) !important;
    z-index:3;
}

.bg-blur {
    position: fixed;
    top:0;
    width:100%;
    height:100vh;
    background-image: url('../../../images/v2/rootBackground.jpg');
    background-repeat: no-repeat;
    /* background-size: cover; */
    background-attachment: fixed;
    background-position:center;
    filter: blur(10px, 50px, 80%);
    -webkit-backdrop-filter: blur(10px);
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -o-filter: blur(10px);
    -ms-filter: blur(10px);
    z-index:1;
}

.bg-dark {
    position: fixed;
    top:0;
    width:100%;
    height:100vh;
    z-index:2;
    background-color:rgba(15,15,15,0.9);
}

#root-app .form-row input {
    color:#F5F5F5 !important;
    font-family: gibsonlight !important;
    width:95% !important;
    margin-bottom: 9px;
    border:1px solid #909090;
}

#root-app .form-row input::placeholder {
    color:#909090 !important;

}

#root-app .form-row input:focus {
    border:1px solid #719500 !important;
}

#root-app .button-wrap input[type='submit']{
    background-color: #909090;
    pointer-events:none;
    border: 0px solid black;
    border-radius: 4px;
    /* height:2em; */
    width: 95%;
    font-size:1.5em !important;
    /* font-size: 28px; */
    /* padding: 3px 10px 3px 10px; */
    color:#F5F5F5 !important;
    padding:0.55em;
    text-align:center;
    height:53px;
    transition:0.2s all;
}

.logo-img {
    background-image: url('../../../images/v2/Lufa_EngLogo.svg');
    width:201px;
    height:201px;
    margin:auto;
    margin-top:100px;
    transition:0.5s all;
}

.smallMargin {
    margin-top:50px !important;
}

#root-app .button-wrap .enabled {
    background-color: #719500 !important;
    pointer-events: all !important;
}

.slide-fade-enter-active {
    transition: all 1s ease;
    opacity:1;
}
.slide-fade-leave-active {
    transition: all 0.8s cubic-bezier(1.0, 0.5, 0.8, 1.0);
}
.slide-fade-enter, .slide-fade-leave-to
    /* .slide-fade-leave-active below version 2.1.8 */ {
    transform: translateX(25px);
    opacity: 0;
}

@media screen and (max-width: 600px) {

    .logo-img {
        width: 100px;
        height: 100px;
        background-size: 100px 100px;
    }
}

.flash-error {
    color: red;
    font-family: 'gibsonregular';
    z-index: 1000;
    font-size: 1.1em !important;
    text-align: center;
    margin-top: 30px;
}

.flash-success {
    color: white;
    font-family: 'gibsonregular';
    z-index: 1000;
    font-size: 1.1em !important;
    text-align: center;
    margin-top: 30px;
}