/* /Components/Account/Pages/Register.razor.rz.scp.css */
.pw-field[b-cqqrgywxf9] {
    position: relative;
    display: flex;
    align-items: center;
}

.pw-reveal[b-cqqrgywxf9] {
    position: absolute;
    right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background: transparent;
    color: #8A97A8;
    cursor: pointer;
    border-radius: 8px;
}

.pw-reveal:hover[b-cqqrgywxf9] {
    color: #5C6B82;
}

.pw-reveal .pw-eye-off[b-cqqrgywxf9] {
    display: none;
}

.pw-reveal.is-revealed .pw-eye[b-cqqrgywxf9] {
    display: none;
}

.pw-reveal.is-revealed .pw-eye-off[b-cqqrgywxf9] {
    display: inline;
}

.pw-rules[b-cqqrgywxf9] {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
}

.pw-rule[b-cqqrgywxf9] {
    position: relative;
    padding-left: 22px;
    font-size: 12.5px;
    line-height: 1.5;
    color: #8A97A8;
    transition: color .15s ease;
}

.pw-rule[b-cqqrgywxf9]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1.5px solid #CBD5E1;
    background: transparent;
    transition: border-color .15s ease, background-color .15s ease;
}

.pw-rule.is-met[b-cqqrgywxf9] {
    color: #1E7F4F;
}

.pw-rule.is-met[b-cqqrgywxf9]::before {
    border-color: #1E7F4F;
    background: #1E7F4F;
}

.pw-rule.is-met[b-cqqrgywxf9]::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 50%;
    width: 3px;
    height: 7px;
    border: solid #fff;
    border-width: 0 1.6px 1.6px 0;
    transform: translateY(-62%) rotate(45deg);
}

.reg-submit:disabled[b-cqqrgywxf9] {
    opacity: .5;
    filter: saturate(.6);
    cursor: not-allowed;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-oggl9rx2ji] {
    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-oggl9rx2ji] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-gcqvwpyslb],
.components-reconnect-repeated-attempt-visible[b-gcqvwpyslb],
.components-reconnect-failed-visible[b-gcqvwpyslb],
.components-pause-visible[b-gcqvwpyslb],
.components-resume-failed-visible[b-gcqvwpyslb],
.components-rejoining-animation[b-gcqvwpyslb] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-gcqvwpyslb],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-gcqvwpyslb],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-gcqvwpyslb],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-gcqvwpyslb],
#components-reconnect-modal.components-reconnect-retrying[b-gcqvwpyslb],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-gcqvwpyslb],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-gcqvwpyslb],
#components-reconnect-modal.components-reconnect-failed[b-gcqvwpyslb],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-gcqvwpyslb] {
    display: block;
}


#components-reconnect-modal[b-gcqvwpyslb] {
    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-gcqvwpyslb 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-gcqvwpyslb 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-gcqvwpyslb 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-gcqvwpyslb]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-gcqvwpyslb 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-gcqvwpyslb {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-gcqvwpyslb {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-gcqvwpyslb {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-gcqvwpyslb] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-gcqvwpyslb] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-gcqvwpyslb] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-gcqvwpyslb] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-gcqvwpyslb] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-gcqvwpyslb] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-gcqvwpyslb] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-gcqvwpyslb 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-gcqvwpyslb] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-gcqvwpyslb {
    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;
    }
}
