body {
    background-color: black;
}

#login-fullpage-container {
    object-fit: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 0px !important;
    margin: 0px !important;
    position: fixed;
    height: 100vh;
    width: 100vw;
}

#login-page-error-message {
    max-width: 850px;
    position: absolute;
    top: 40px;
    left: 0; 
    right: 0;
    width: fit-content;
    margin-inline: auto;
}

#center-container {
    margin: 150px auto !important;
    max-width: 550px;
    width: 100%;
}

#login-form-container {
    margin: 0 auto;
    width: calc(100% - 100px);
    background-color: white;
    border-radius: 15px;
    padding: 10px 0;
}

.login-form-element {
    max-width: calc(100% - 60px);
    margin: 10px auto;
}

#login-form-user-icon-container {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: var(--donau-blau);
    display: flex;
    justify-content: center;
    align-items: center;
}

#login-form-user-icon-container i {
    font-size: 20px;
    color: white;
}

#login-form-container input {
    background-color: #F6F6F6;
    border: none;
    height: 60px;
    text-align: center;
    font-size: 16px;
}

#login-form-container input::placeholder {
    color: #CCCCCC;
}

#login-form-container button[type="submit"] {
    width: 185px;
    display: block;
    background-color: var(--donau-blau);
    border: none;
    font-size: 13px;
    height: 47px;
}

#login-form-back-button {
    color: white;
    text-shadow: 1px 1px 2px black;
    height: 50px;
    line-height: 50px;
    display: inline-block;
}

#login-form-back-button i {
    margin-right: 10px;
}

.login-screen-social-media-container {
    height: 50px;
    gap: 10px;
    font-size:35px;
    position: fixed;
    right: 20px;
    bottom: 20px;
}

.login-screen-social-media-container i {
    color: white !important;
    opacity: 0.5;
}
@keyframes fadeInDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity:0; 
    } 
    to { 
        opacity:1; 
    } 
}

@media (max-width: 700px) {
    #login-form-container {
        margin: 0 auto;
        width: calc(100% - 10px);
        background-color: white;
        border-radius: 15px;
        padding: 10px 0;
    }

    #login-form-back-button {
        width: 100%;
        text-align: center;
    }
}

.fadeInDown {
    animation: 1.5s fadeInDown;
}

nav, header, footer {
    display: none !important;
}

.fadeIn {
    opacity:0;
    animation: fadeIn ease-in 1;
    animation-fill-mode:forwards;
    animation-duration:1s;
}

.fadeIn.first {
    animation-delay: 0.4s;
}

.fadeIn.second {
    animation-delay: 0.6s;
}

.fadeIn.third {
    animation-delay: 0.8s;
}

.fadeIn.fourth {
    animation-delay: 1s;
}