/* _content/Module_LiveView_V2/Authentification/LoginPage.razor.rz.scp.css */
/* Übernimmt das Basis-Styling von Index.razor.css */

.login-container[b-jnua4igh56] {
    max-width: 550px;
    margin: 3rem auto;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #001f3f;
}

/* NEU: Header innerhalb des Containers */
.login-header[b-jnua4igh56] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

    .login-header h3[b-jnua4igh56] {
        font-size: 1.8rem;
        font-weight: 600;
        color: #0a2e5a;
        margin: 0;
    }

    .login-header img[b-jnua4igh56] {
        height: 40px;
    }

/* Formular-Styling */
.form-group[b-jnua4igh56] {
    margin-bottom: 1.5rem;
}

    .form-group label[b-jnua4igh56] {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
        color: #495057;
    }

.form-control[b-jnua4igh56] {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: 1px solid #ced4da;
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .form-control:focus[b-jnua4igh56] {
        outline: none;
        border-color: #d4a406;
        box-shadow: 0 0 0 3px rgba(212, 164, 6, 0.25);
    }

/* Button-Styling */
.button-group[b-jnua4igh56] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.btn[b-jnua4igh56] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

    .btn:disabled[b-jnua4igh56] {
        opacity: 0.6;
        cursor: not-allowed;
    }

.btn-icon[b-jnua4igh56] {
    font-size: 1.2rem;
    margin-right: 0.75rem;
}

.btn-email[b-jnua4igh56] {
    background-color: #001f3f;
    color: white;
}

    .btn-email:hover:not(:disabled)[b-jnua4igh56] {
        background-color: #0a2e5a;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

.btn-sms[b-jnua4igh56] {
    background-color: #ffffff;
    color: #001f3f;
    border: 2px solid #001f3f;
}

    .btn-sms:hover:not(:disabled)[b-jnua4igh56] {
        background-color: #f0f2f5;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

/* Spezielles Styling für PIN-Eingabe */
.pin-info[b-jnua4igh56] {
    font-size: 0.9rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 1rem;
}

.pin-input-field[b-jnua4igh56] {
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 0.5rem; /* Simuliert OTP-Boxen */
}

/* NEU: Styling für Dialoge */
.dialog-backdrop[b-jnua4igh56] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.dialog-box[b-jnua4igh56] {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    width: 90%;
    max-width: 400px;
    text-align: center;
}

    .dialog-box h4[b-jnua4igh56] {
        font-size: 1.5rem;
        color: #0a2e5a;
        margin-top: 0;
        margin-bottom: 1rem;
    }

    .dialog-box p[b-jnua4igh56] {
        margin-bottom: 1.5rem;
        color: #333;
    }

.btn-dialog-close[b-jnua4igh56] {
    background-color: #001f3f;
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* NEU: Styling für Spinner */
.spinner-overlay[b-jnua4igh56] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.spinner[b-jnua4igh56] {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #001f3f;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin-b-jnua4igh56 1s linear infinite;
}

@keyframes spin-b-jnua4igh56 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* _content/Module_LiveView_V2/Components/Layout/EmptyLayout.razor.rz.scp.css */
.page[b-1n9w16xwd2] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-1n9w16xwd2] {
    flex: 1;
    background: #f0f2f5;
    height: 100vh;
}

.sidebar[b-1n9w16xwd2] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-1n9w16xwd2] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-1n9w16xwd2]  a, .top-row[b-1n9w16xwd2]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .top-row[b-1n9w16xwd2]  a:hover, .top-row[b-1n9w16xwd2]  .btn-link:hover {
            text-decoration: underline;
        }

        .top-row[b-1n9w16xwd2]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

@media (max-width: 640.98px) {
    .top-row[b-1n9w16xwd2] {
        justify-content: space-between;
    }

        .top-row[b-1n9w16xwd2]  a, .top-row[b-1n9w16xwd2]  .btn-link {
            margin-left: 0;
        }
}

@media (min-width: 641px) {
    .page[b-1n9w16xwd2] {
        flex-direction: row;
    }

    .sidebar[b-1n9w16xwd2] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-1n9w16xwd2] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth[b-1n9w16xwd2]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row[b-1n9w16xwd2], article[b-1n9w16xwd2] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-1n9w16xwd2] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-1n9w16xwd2] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/Module_LiveView_V2/Components/Layout/MainLayout.razor.rz.scp.css */
/* Basis-Layout f�r die ganze Seite */
. page[b-6b9t2az2xx] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #0e1116; /* Schwarzer Hintergrund */
}

/* Container f�r Hauptinhalt (ohne Seitenleiste) */
.main-body[b-6b9t2az2xx] {
    display: flex;
    flex: 1;
    margin: 0 1rem;
}

/* Haupt-Inhaltsbereich */
main[b-6b9t2az2xx] {
    flex: 1;
    padding: 0rem;
    overflow-y: auto;
    background-color: black;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.content[b-6b9t2az2xx] {
    width: 100%;
    max-width: 3840px;
}

/* Kopfzeile - 10% schmaler */
.app-header[b-6b9t2az2xx] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.675rem 2rem; /* Von 0.75rem auf 0.675rem reduziert (10% kleiner) */
    background: linear-gradient(135deg, #0a2e5a, #001f3f);
    color: white;
    border-bottom: 3px solid #d4a406;
    border-left: 3px solid #d4a406;
    border-right: 3px solid #d4a406;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-radius: 15px 15px 15px 15px;
    margin: 1rem 1rem 0;
    position: relative;
    z-index: 10;
    margin-bottom: 5px;
}

.logo-container[b-6b9t2az2xx] {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

    .logo-container img[b-6b9t2az2xx] {
        height: 45px; /* Von 50px auf 45px reduziert (10% kleiner) */
        width: auto;
    }

    .logo-container.logo-right[b-6b9t2az2xx] {
        justify-content: flex-end;
    }

.title-container[b-6b9t2az2xx] {
    flex: 2;
    text-align: center;
}

    .title-container h1[b-6b9t2az2xx] {
        margin: 0;
        font-size: 1.98rem; /* Von 2.2rem auf 1.98rem reduziert (10% kleiner) */
        font-weight: 600;
        letter-spacing: 1px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .title-container h2[b-6b9t2az2xx] {
        margin: 0;
        font-size: 0.99rem; /* Von 1.1rem auf 0.99rem reduziert (10% kleiner) */
        font-weight: 300;
        color: #e0e0e0;
        letter-spacing: 0.5px;
    }

.app-footer[b-6b9t2az2xx] {
    text-align: center;
    padding: 1rem;
    font-size: 0.8rem;
    color: #6c757d;
    background-color: transparent;
}
