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

.login-container[b-gstwd1o77m] {
    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-gstwd1o77m] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

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

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

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

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

.form-control[b-gstwd1o77m] {
    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-gstwd1o77m] {
        outline: none;
        border-color: #d4a406;
        box-shadow: 0 0 0 3px rgba(212, 164, 6, 0.25);
    }

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

.btn[b-gstwd1o77m] {
    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-gstwd1o77m] {
        opacity: 0.6;
        cursor: not-allowed;
    }

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

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

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

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

    .btn-sms:hover:not(:disabled)[b-gstwd1o77m] {
        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-gstwd1o77m] {
    font-size: 0.9rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 1rem;
}

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

/* NEU: Styling für Dialoge */
.dialog-backdrop[b-gstwd1o77m] {
    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-gstwd1o77m] {
    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-gstwd1o77m] {
        font-size: 1.5rem;
        color: #0a2e5a;
        margin-top: 0;
        margin-bottom: 1rem;
    }

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

.btn-dialog-close[b-gstwd1o77m] {
    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-gstwd1o77m] {
    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-gstwd1o77m] {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #001f3f;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin-b-gstwd1o77m 1s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-tww6nwbnw8] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    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-tww6nwbnw8] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-gzessj7ck1],
.components-reconnect-repeated-attempt-visible[b-gzessj7ck1],
.components-reconnect-failed-visible[b-gzessj7ck1],
.components-pause-visible[b-gzessj7ck1],
.components-resume-failed-visible[b-gzessj7ck1],
.components-rejoining-animation[b-gzessj7ck1] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-gzessj7ck1],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-gzessj7ck1],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-gzessj7ck1],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-gzessj7ck1],
#components-reconnect-modal.components-reconnect-retrying[b-gzessj7ck1],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-gzessj7ck1],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-gzessj7ck1],
#components-reconnect-modal.components-reconnect-failed[b-gzessj7ck1],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-gzessj7ck1] {
    display: block;
}


#components-reconnect-modal[b-gzessj7ck1] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-gzessj7ck1 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-gzessj7ck1 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-gzessj7ck1 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-gzessj7ck1]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-gzessj7ck1 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-gzessj7ck1 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-gzessj7ck1 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-gzessj7ck1 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-gzessj7ck1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-gzessj7ck1] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-gzessj7ck1] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-gzessj7ck1] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-gzessj7ck1] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-gzessj7ck1] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-gzessj7ck1] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-gzessj7ck1 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-gzessj7ck1] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-gzessj7ck1 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
