html {
    min-height: 100%;
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
}

body {
    background: url('images/background2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    margin: 0px;
    display: flex;
    animation: background-rotate 25s infinite;
}

@keyframes background-rotate {
    0% {
        backdrop-filter: hue-rotate(0deg);
    }
    100% {
        backdrop-filter: hue-rotate(360deg);
    }
}

.form-container {
    flex-direction: column;
    margin: auto;
}

.form-title {
    font-size: 32px;
}

.login-form {

}

.form-input-container {
    margin-bottom: 10px;
}

.form-input {
    color: white;
    border-top-style: hidden;
    border-right-style: hidden;
    border-left-style: hidden;
    background-color: unset;
    border-bottom: 1px solid grey;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
}

.form-login-button {
    cursor: pointer;
}

.no-select {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}

.error-container {
    color: red;
    font-size: 12px;
    visibility: hidden;
}

.spinner-container {
    text-align: center;
    height: 40px;
}


.lds-ellipsis {
    visibility: hidden;
    display: inline-block;
    position: relative;
    width: 80px;
    height: 40px;
}
.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}
