html {
    background-image: url(/static/datacenter.jpeg);
    background-position: center;
    height: 100vh;
    background-size: cover;
}


body, html{
    width: 100%;
    font-family: system-ui, Arial, Helvetica, sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    min-width: 300px;
    margin: 0px;
}

.content{
    text-align: center;
    margin: auto;
    width: 100%;
}

button{
    font-family: system-ui, Arial, Helvetica, sans-serif;
    font-size: 0.9em;
    font-weight: 400;
    border: none;
    padding: 15px;
    text-transform: capitalize;
    border-radius: 3px;

}

.login{
    position: relative;
    width: min(350px, 90%);
    padding: 50px 0px 30px 0px;
    margin: auto;
    background-color: white;
    margin-top: 10vh;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
    z-index: 1;
}



.logo{
    max-width: 80%;
    max-height: 18%;
    margin: auto;
}

.field {
    margin: 15px auto 15px auto;
    width: 80%;
    text-align: left;
}

label{
    padding-left: 3px;
}

input{
    width: 90%;
    margin: 3px auto 3px auto;
    padding: 10px;
    border: 1px solid lightgrey;
    border-radius: 7px;
    box-shadow: rgb(99 99 99 / 20%) 0px 1px 5px 0px;
}

form{
    margin-top: 20px;
    text-align: center;
}

footer{
    position: absolute;
    text-align: left;
    bottom: 0px;
    margin: 20px;
}

footer > p{
    margin: 10px;
    color: white;
    background-color: rgb(0 0 0 / 30%);
    box-shadow: rgb(0 0 0 / 30%) 0px 0px 23px 29px;
    border-radius: 2px;
    padding: 10px;
}

.error-msg{
    color: red;
    font-size: 0.8em;
    margin: auto;
}


.button-area{
    vertical-align: middle;
    height: 80px;
    position: relative;
}

.button-area > *{
    position: absolute;
    inset: 0; 
}

button{
    cursor: pointer;
    margin:  auto;
    width: 120px;
    background-color: rgb(94 136 158);
    color: white;
    height: 55px;
}


.lds-ellipsis {
    margin: auto;
    width: 80px;
    height: 80px;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: rgb(159, 202, 230);
    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);
    }
}