#background-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -2;
}
body
{
    font-family: 'Plus Jakarta Sans';
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 20px;
}

body::before
{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* 0.4 = 40% Schwarz */
    z-index: 0;
}

@font-face
{
    font-display: swap;
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/PlusJakartaSans-Regular.ttf') format('truetype');
}

@font-face
{
    font-display: swap;
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/PlusJakartaSans-Bold.ttf') format('truetype');
}

label
{
    color: #FFFFFF;
    font-size: 16px;
}

.loginLogo
{

}

@media (min-width: 768px)
{
    .login-form
    {
        width: 400px;
        padding: 30px;
        background-color: #FFFFFF14;
        border: 2px solid #FFFFFF1A;
        border-radius: 12px;
        z-index: 1;
    }
}

@media (max-width: 767px)
{
    .login-form
    {
        width: 100%;
        padding: 30px;
        background-color: #FFFFFF14;
        border: 2px solid #FFFFFF1A;
        border-radius: 12px;
        z-index: 1;
    }
}

.form-field
{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.form-field .is-invalid {
    box-shadow: 0 1px 2px 3px rgba(255, 0, 0, 0.85);
}
.form-field .invalid-feedback {
    font-size:0.75em;
    color: #FBC0C0;
}
.alert {
    font-size:0.9em;
    font-weight:bold;
    color: white;
    margin-bottom:1em;
}
.alert-danger {
    color: #FBC0C0;
}
/* Show .invalid-feedback only if the previous sibling input has class is-invalid */
input.is-invalid + .invalid-feedback {
    display: block;
}

/* Hide .invalid-feedback by default */
.invalid-feedback {
    display: none;
}


input[type="text"], input[type="password"]
{
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 15px;
    color: #717171;
    font-family: 'Plus Jakarta Sans';
    font-size: 16px;
    border: 0px;
}

button[type="submit"]
{
    background-color: #0C7CFF;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans';
    font-size: 16px;
    border: 2px solid #0C7CFF;
    border-radius: 50px;
    padding: 13px 30px;
    font-weight: 700;
    transition: 0.3s;
    cursor: pointer;
}

button[type="submit"]:hover
{
    background-color: transparent;
}

.forgot-password
{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 30px;
}

.forgot-password a, .footer a
{
    color: #FFFFFF;
    font-size: 14px;
    position: relative;
    text-decoration: none;
}

.forgot-password a:after, .footer a:after
{
    content: "";
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
    top: 92%;
    border-bottom: 1px solid;
    transition: all .3s;
}

.forgot-password a:hover::after, .footer a:hover::after
{
    opacity: 0;
    right: 0px;
    width: 10px;
}

.logo
{
    margin-bottom: 30px;
    z-index: 1;
}

.logo img
{
    max-width: 300px;
    max-height: 125px;
}

.footer
{
    color: #FFFFFF;
    width: 100%;
    position: absolute;
    bottom: 30px;
    text-align: center;
    z-index: 1;
}