:root {
    --light_gray: #e8e8ea;
    --dark_gray: #595757;
}

.color_light_gray {
    color: var(--light_gray);
}

.color_dark_gray {
    color: var(--dark_gray);
}

html,
body {
    background-color: #E1E1E1;
    color: var(--dark_gray);
}

.t-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    max-height: 2000px;
    overflow: auto;
}

.login-container {
    display: flex;
    flex: auto;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    max-width: 600px;
    min-width: 300px;
    background-color: #F3F3F4;
    border-radius: 0.75rem;
}

.logo {
    width: 100px;
    height: auto;
}

.login-image.mobile {
    height: 20vh;
    max-width: 100%;
    border-radius: 0.25rem;
    object-fit: cover;
    display: block;
}

.login-image {
    flex: auto;
    height: 100%;
    max-width: 500px;
    border-radius: 0.25rem;
    object-fit: cover;
    display: none;
}

.logo-container {
    display: flex;
    flex-flow: row;
}

@media (min-width: 992px) {
    .login-image.mobile {
        display: none;
    }

    .login-image {
        display: block;
    }

    .logo {
        max-width: 300px;
        width: 100%;
    }

    .logo-container {
        flex-flow: column;
    }
}

.input-background {
    background-color: #80808017;
    border: none;
    border-radius: 0.25rem;
    padding: 0.5rem;
}

    .input-background:focus {
        outline: 1px solid var(--light_gray);
    }

    .input-background::placeholder {
        color: var(--light_gray);
    }

.button-login {
    border-radius: 0.25rem;
    outline: 2px solid #112856;
    border: none;
    padding: 0.5rem;
    color: white;
    font-weight: 300;
    background-color: #112856;
}

    .button-login:hover {
        animation: bounce 1s infinite;
    }

    .button-login:focus {
        animation: bounce 1s infinite;
    }

label {
    display: inline-block;
}

.hover_bounce:hover {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(0);
    }
}

.OtherShopCodeContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
    justify-content: space-between;
}

@media (max-width: 992px) {
    .OtherShopCodeContainer {
    }
}

.shadowFlags {
    position: absolute;
    bottom: -8px; /* Anpassung der Position des Schattens */
    left: 50%;
    transform: translateX(-50%);
    width: 20px; /* Anpassung der Breite des Schattens */
    height: 4px; /* Anpassung der Höhe des Schattens */
    background-color: grey; /* Grauer Farbton */
    border-radius: 70%;
    opacity: 0.3; /* Anpassung der Deckkraft */
    filter: blur(1px);
}
