@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
html, body {
    padding:0;
    margin:0;
    text-align: center;
    font-size:18px;
    font-family: "Roboto Condensed", serif;
    font-weight: 300;
}

#background_animation {
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    overflow:hidden;
    z-index:1;
}

input,select,textarea {
    padding:10px;
    border:1px solid #eeeeee;
    background-color: #ffffff;
    border-radius: 0;
    display:block;
    width:100%;
    font-size:18px;
    font-family: "Roboto Condensed", serif;
    font-weight: 300;
}

button {
    border:1px solid #333333;
    background-color: #333333;
    color:#FFFFFF;
    border-radius: 0;
    width:100%;
    padding:10px;
    font-size:18px;
    font-family: "Roboto Condensed", serif;
    font-weight: 300;
}

main {
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap:10px;
    overflow:auto;
    z-index:10;
}
h1 {
    display:block;
    margin:0 auto;
    position:relative;
}
main form {
    position:relative;
    width: 100%;
    max-width: 600px;
    border:1px solid #bababa;
    padding:30px;
    border-radius:5px;
    background-color: #ffffff;
}
.login-icon-top {
    font-size:64px;
}
.login-icon-top i {
    animation: gelatine 1s infinite;
}

.login-create-first-user-container {
    display:flex;
    align-items:center;
    width:70%; 
}
.login-create-first-user-text {
    width:50%;
}
.login-create-first-user-form-container {
    width:50%; 
}
.login-create-first-user-form-container form {
    width:100%;
    max-width:100%;
}
.login-create-first-user-form-container form span {
    color:red;
}

footer {
    position: fixed;
    bottom:0;
    left:0;
    right:0;
    font-size:12px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap:10px;
    padding:10px;
    z-index:10;
}

@keyframes gelatine {
    from, to { transform: scale(1, 1); }
    25% { transform: scale(0.9, 1.1); }
    50% { transform: scale(1.1, 0.9); }
    75% { transform: scale(0.95, 1.05); }
}

*, *:before, *:after {
    box-sizing: border-box;
}