body {
    background-color: #07FFBA;
}
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.login-button {
    color: white;
    position: relative;
    font-family: "Segoe UI";
    cursor: pointer;
}


.loader {
    width: 100px;
    height: 100px;
    background-image: url("/img/splashscreen_logo.png");
    background-repeat: no-repeat;
    background-size: contain;
    animation-name: splashscreen;
    animation-duration: 1700ms;
    animation-iteration-count: infinite; 
    /*animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1); */
    /*animation-timing-function: cubic-bezier(0.5, 0.8, 0.1, 0.9); */
    animation-timing-function: cubic-bezier(.6,.11,.57,1);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -50px;
    margin-top: -50px;
}
@keyframes splashscreen {
    0%, 20%  {
        transform:rotate(0deg);
    }
    100% {
        transform:rotate(360deg);
    }
}
/* 
.loader,
.loader:before,
.loader:after {
    border-radius: 50%;
    width: 1em;
    height: 1em;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: load7 1.8s infinite ease-in-out;
    animation: load7 1.8s infinite ease-in-out;
}
.loader {
    color: #000;
    font-size: 10px;
    top: 200px;
    margin: 80px auto;
    position: relative;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}
.loader:before,
.loader:after {
    content: '';
    position: absolute;
    top: 0;
}
.loader:before {
    left: -3.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}
.loader:after {
    left: 3.5em;
}
@-webkit-keyframes load7 {
    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
}
@keyframes load7 {
    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
} */
