body, html {
    margin: 0;
    padding: 0;
    background-color: #1c2837; /* Dunkelblau */
    font-family: 'Montserrat', sans-serif;
}

.bg-primary {
    background: linear-gradient(45deg, #2d4059, #4f719d); /* Hintergrund-Gradient */
}

.bg-welcome {
    background: linear-gradient(45deg, #2d4059, #4f719d);
}

@keyframes bgAnimation {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 100%;
    }
}

.logo {
    max-width: 200px;
}

.text-white {
    color: #e6e6e6; /* Helles Grau für Text */
}
.text-container {
    font-family: 'Montserrat', monospace; 
    font-size: 40px;
    color: #ffffff; 
}

.cursor {
    animation: blink 1s infinite;
    color: white;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    50.1%, 100% { opacity: 0; }
}

.bg-primary {
    background: linear-gradient(45deg, #2d4059, #4f719d); /* Hintergrund-Gradient */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-primary-second {
    background: linear-gradient(-45deg, #4f719d, #2d4059); /* Hintergrund-Gradient */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: .5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #e6e6e6; /* Helles Grau für Text */
}

.form-control, .btn-primary, .form-check-input {
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
}

.btn-primary {
    background-color: #4f719d;
    border: none;
}

.btn-primary:hover {
    background-color: #2d4059;
}

.btn-link {
    color: #e6e6e6;
}

.btn-link:hover {
    color: #fff;
}

.invalid-feedback {
    color: #ff6b6b;
}

.login-arrow {
    font-family: sans-serif;
    color: #fff;
    position: absolute;
    top: 15px;
    right: 15px;
    font-family: 'Montserrat', monospace; 
    font-size: 20px;
}

/* Konsole-Style */
.console {
    background-color: #000;
    color: #fff;
    font-family: monospace;
    opacity: 0.5; /* Standard-Opazität */
}

.console-input:focus + .blinking-cursor,
.console-input:focus {
    opacity: 1; /* Volle Opazität, wenn fokussiert */
}

.blinking-cursor {
    animation: blink 1s infinite;
    color: #fff;
}


.console:focus {
    background-color: #000;
    color: #fff;
    font-family: monospace;
    opacity: 1;
}

.console-input {
    background-color: transparent;
    border: none;
    color: #fff;
    outline: none;

    text-transform: uppercase;
}

.console:before {
    content: '>_';
    color: #fff;
}

.feature-row {
    /* Hinzufügen von Abstand und Styling für jede Funktionsreihe */
}

.feature-title {
    color: #4f719d; /* Farbe des Titels, angepasst an deine Farbgebung */
    margin-bottom: 20px;
}

.lead {
    color: #e6e6e6; /* Helles Grau für den Beschreibungstext */
}

    /* CSS für den benutzerdefinierten Scrollbalken */
    ::-webkit-scrollbar {
        width: 5px; /* Breite des Scrollbalkens */
    }

    ::-webkit-scrollbar-track {
        background: #1c2837; /* Hintergrundfarbe des Scrollbalkenbereichs */
    }

    ::-webkit-scrollbar-thumb {
        background: #888; /* Farbe des Scrollbalken-Griffes */
        border-radius: 0px; /* Radius des Scrollbalken-Griffes */
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #555; /* Farbe des Scrollbalken-Griffes bei Hover */
    }

    @media (min-width: 769px) {
        .custom-img {
            width: 100%; /* oder eine spezifische Größe, die Sie bevorzugen */
            height: auto;
        }
    }
    
    /* Stil für Bildschirme bis 768px breit (typische Breite für Tablets und Mobilgeräte) */
    @media (max-width: 768px) {
        .custom-img {
            width: 50%; /* oder eine spezifische Größe, die Sie für Mobilgeräte bevorzugen */
            height: auto;
        }
    }

    @media (max-width: 768px) { /* 768px ist ein gängiger Umbruchpunkt für Tablets und Mobilgeräte */
        .hide-on-mobile {
            display: none;
        }
    }