/* _content/TestAppBlazor/Components/Layout/AdminLayout.razor.rz.scp.css */
.admin-layout[b-yaqf84mn5l] {
    display: flex;
    height: 100vh;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f6f9;
}

.sidebar[b-yaqf84mn5l] {
    width: 280px;
    background: linear-gradient(135deg, #1a7b7b 0%, #2d9d9d 100%);
    color: white;
    display: flex;
    flex-direction: column;
    transition: width 0.3s ease;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

.main-content[b-yaqf84mn5l] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background: #f0f2f5;
    /* Slightly darker for contrast with cards */
}

.top-row[b-yaqf84mn5l] {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    height: 70px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    color: #1a7b7b;
    /* Teal text for header */
    position: sticky;
    top: 0;
    z-index: 1020;
}

.top-row h5[b-yaqf84mn5l] {
    color: #1a7b7b !important;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sidebar[b-yaqf84mn5l] {
        width: 60px;
        /* Collapsed state for mobile */
    }

    .sidebar:hover[b-yaqf84mn5l] {
        width: 250px;
        /* Expand on hover */
    }
}
/* _content/TestAppBlazor/Components/Layout/LandingLayout.razor.rz.scp.css */
.landing-layout[b-qu0aonnx9b] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: radial-gradient(circle at center, #4db8b8 0%, #2d9d9d 50%, #1a7b7b 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Animated background blobs - Adjusted for cleaner look */
.blob[b-qu0aonnx9b] {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: float 20s infinite ease-in-out;
    pointer-events: none;
}

.landing-header[b-qu0aonnx9b] {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 10;
}

.landing-content[b-qu0aonnx9b] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 1;
}

.landing-footer[b-qu0aonnx9b] {
    position: absolute;
    bottom: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    z-index: 10;
    width: 100%;
}

.footer-links[b-qu0aonnx9b] {
    margin-top: 10px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.landing-footer a[b-qu0aonnx9b] {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.landing-footer a:hover[b-qu0aonnx9b] {
    color: white;
}

.landing-footer a[b-qu0aonnx9b]::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s;
}

.landing-footer a:hover[b-qu0aonnx9b]::after {
    width: 100%;
}

@media (max-width: 768px) {
    .landing-header[b-qu0aonnx9b] {
        top: 20px;
        right: 20px;
    }
}
/* _content/TestAppBlazor/Components/Layout/LoginLayout.razor.rz.scp.css */
.login-layout-root[b-mt6e51qivx] {
    background: #018e74;
    /* Updated Teal Background */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.login-layout-root[b-mt6e51qivx]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 150%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(25deg);
    pointer-events: none;
}
/* _content/TestAppBlazor/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-ghj1qb3bkp] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-ghj1qb3bkp] {
    flex: 1;
}

.sidebar[b-ghj1qb3bkp] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-ghj1qb3bkp] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-ghj1qb3bkp]  a, .top-row[b-ghj1qb3bkp]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-ghj1qb3bkp]  a:hover, .top-row[b-ghj1qb3bkp]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-ghj1qb3bkp]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-ghj1qb3bkp] {
        justify-content: space-between;
    }

    .top-row[b-ghj1qb3bkp]  a, .top-row[b-ghj1qb3bkp]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-ghj1qb3bkp] {
        flex-direction: row;
    }

    .sidebar[b-ghj1qb3bkp] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-ghj1qb3bkp] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-ghj1qb3bkp]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-ghj1qb3bkp], article[b-ghj1qb3bkp] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-ghj1qb3bkp] {
    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-ghj1qb3bkp] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/TestAppBlazor/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-1pnz7celn1] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-1pnz7celn1] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-1pnz7celn1] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-1pnz7celn1] {
    font-size: 1.1rem;
}

.bi[b-1pnz7celn1] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-1pnz7celn1] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-1pnz7celn1] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-1pnz7celn1] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-1pnz7celn1] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-1pnz7celn1] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-1pnz7celn1] {
        padding-bottom: 1rem;
    }

    .nav-item[b-1pnz7celn1]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-1pnz7celn1]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-1pnz7celn1]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-1pnz7celn1] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-1pnz7celn1] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-1pnz7celn1] {
        display: none;
    }

    .nav-scrollable[b-1pnz7celn1] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/TestAppBlazor/Components/Pages/AdminLogin.razor.rz.scp.css */
/* Scoped styles for AdminLogin.razor - Restored Sliding Panel */
.login-container[b-f8ej23qdde] {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    width: 900px;
    max-width: 95%;
    min-height: 550px;
    display: block;
    margin: auto;
}

.form-container[b-f8ej23qdde] {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.sign-in-container[b-f8ej23qdde] {
    inset-inline-start: 0;
    width: 50%;
    z-index: 2;
}

.sign-up-container[b-f8ej23qdde] {
    inset-inline-start: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

.login-container.right-panel-active .sign-in-container[b-f8ej23qdde] {
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.6s ease-in-out;
}

[dir="rtl"] .login-container.right-panel-active .sign-in-container[b-f8ej23qdde] {
    transform: translateX(-100%);
}

.login-container.right-panel-active .sign-up-container[b-f8ej23qdde] {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show-b-f8ej23qdde 0.6s;
}

[dir="rtl"] .login-container.right-panel-active .sign-up-container[b-f8ej23qdde] {
    transform: translateX(-100%);
}

@keyframes show-b-f8ej23qdde {

    0%,
    49.99% {
        opacity: 0;
        z-index: 1;
    }

    50%,
    100% {
        opacity: 1;
        z-index: 5;
    }
}

.overlay-container[b-f8ej23qdde] {
    position: absolute;
    top: 0;
    inset-inline-start: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: 100;
}

.login-container.right-panel-active .overlay-container[b-f8ej23qdde] {
    transform: translateX(-100%);
}

[dir="rtl"] .login-container.right-panel-active .overlay-container[b-f8ej23qdde] {
    transform: translateX(100%);
}

.overlay[b-f8ej23qdde] {
    background: linear-gradient(135deg, #4db8b8 0%, #1a7b7b 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: white;
    position: relative;
    inset-inline-start: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.login-container.right-panel-active .overlay[b-f8ej23qdde] {
    transform: translateX(50%);
}

[dir="rtl"] .login-container.right-panel-active .overlay[b-f8ej23qdde] {
    transform: translateX(-50%);
}

.overlay-panel[b-f8ej23qdde] {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.overlay-left[b-f8ej23qdde] {
    transform: translateX(-20%);
}

[dir="rtl"] .overlay-left[b-f8ej23qdde] {
    transform: translateX(20%);
}

.login-container.right-panel-active .overlay-left[b-f8ej23qdde] {
    transform: translateX(0);
}

.overlay-right[b-f8ej23qdde] {
    inset-inline-end: 0;
    transform: translateX(0);
}

.login-container.right-panel-active .overlay-right[b-f8ej23qdde] {
    transform: translateX(20%);
}

[dir="rtl"] .login-container.right-panel-active .overlay-right[b-f8ej23qdde] {
    transform: translateX(-20%);
}

form[b-f8ej23qdde] {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    height: 100%;
    text-align: center;
}

h1[b-f8ej23qdde] {
    font-weight: bold;
    margin-bottom: 10px;
    color: #1a3d5c;
    font-size: 2rem;
}

.social-container[b-f8ej23qdde] {
    margin: 20px 0;
}

.social-container a[b-f8ej23qdde] {
    border: 1px solid #ddd;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    height: 40px;
    width: 40px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.social-container a:hover[b-f8ej23qdde] {
    border-color: #2d9d9d;
    color: #2d9d9d;
}

span[b-f8ej23qdde] {
    font-size: 12px;
    color: #666;
    margin: 10px 0;
}

input[b-f8ej23qdde] {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
    border-radius: 8px;
    font-size: 14px;
}

input:focus[b-f8ej23qdde] {
    outline: none;
    background: white;
    box-shadow: 0 0 0 2px rgba(45, 157, 157, 0.2);
}

button[b-f8ej23qdde] {
    border-radius: 20px;
    border: 1px solid #1a7b7b;
    background: #1a7b7b;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    cursor: pointer;
    margin-top: 10px;
    width: auto;
}

button:active[b-f8ej23qdde] {
    transform: scale(0.95);
}

button:focus[b-f8ej23qdde] {
    outline: none;
}

button.ghost[b-f8ej23qdde] {
    background: transparent;
    border-color: white;
}

.overlay-panel h1[b-f8ej23qdde] {
    color: white;
}

.overlay-panel p[b-f8ej23qdde] {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 20px 0 30px;
}

.logo[b-f8ej23qdde] {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}
/* _content/TestAppBlazor/Components/Pages/Home.razor.rz.scp.css */
.container[b-4bciujsusy] {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    padding: 60px 20px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-container[b-4bciujsusy] {
    margin-bottom: 50px;
    animation: fadeInDown-b-4bciujsusy 0.8s ease-out;
}

.logo-box[b-4bciujsusy] {
    width: 110px;
    height: 110px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.main-logo[b-4bciujsusy] {
    width: 65px;
    height: 65px;
}

h1[b-4bciujsusy] {
    color: #1a3d5c;
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.subtitle[b-4bciujsusy] {
    color: rgba(26, 61, 92, 0.7);
    font-size: 19px;
    font-weight: 500;
}

.cards-container[b-4bciujsusy] {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.card[b-4bciujsusy] {
    width: 280px;
    height: 350px;
    border-radius: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.card.user[b-4bciujsusy] {
    background: #ffffff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.card.admin[b-4bciujsusy] {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
}

.card:hover[b-4bciujsusy] {
    transform: translateY(-15px);
}

.card.user:hover[b-4bciujsusy] {
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
}

.card.admin:hover[b-4bciujsusy] {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.1);
}

.icon-section[b-4bciujsusy] {
    width: 100px;
    height: 100px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.03);
}

.card.admin .icon-section[b-4bciujsusy] {
    background: rgba(255, 255, 255, 0.1);
}

.card-icon[b-4bciujsusy] {
    width: 50px;
    height: 50px;
}

.card.user .card-icon[b-4bciujsusy] {
    color: #8fa0ac;
}

.card-title[b-4bciujsusy] {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.card.user .card-title[b-4bciujsusy] {
    color: #435e72;
}

.card.admin .card-title[b-4bciujsusy] {
    color: #ffffff;
}

.arrow-btn[b-4bciujsusy] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e1f5f5;
    color: #4db8b8;
    font-size: 20px;
    transition: all 0.3s;
}

.card.admin .arrow-btn[b-4bciujsusy] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.card:hover .arrow-btn[b-4bciujsusy] {
    transform: scale(1.1);
}

@keyframes fadeInDown-b-4bciujsusy {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    h1[b-4bciujsusy] {
        font-size: 38px;
    }

    .card[b-4bciujsusy] {
        width: 100%;
        max-width: 320px;
        height: 300px;
    }
}
/* _content/TestAppBlazor/Components/Pages/UserLogin.razor.rz.scp.css */
/* Scoped styles for UserLogin.razor - Restored Sliding Panel */
.login-container[b-y5uenfak7p] {
    background: rgba(255, 255, 255, 0.85);
    /* Glass effect */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    width: 900px;
    max-width: 95%;
    min-height: 550px;
    display: block;
    margin: auto;
}

.form-container[b-y5uenfak7p] {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.sign-in-container[b-y5uenfak7p] {
    inset-inline-start: 0;
    width: 50%;
    z-index: 2;
}

.sign-up-container[b-y5uenfak7p] {
    inset-inline-start: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

.login-container.right-panel-active .sign-in-container[b-y5uenfak7p] {
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.6s ease-in-out;
}
[dir="rtl"] .login-container.right-panel-active .sign-in-container[b-y5uenfak7p] {
    transform: translateX(-100%);
}

.login-container.right-panel-active .sign-up-container[b-y5uenfak7p] {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show-b-y5uenfak7p 0.6s;
}
[dir="rtl"] .login-container.right-panel-active .sign-up-container[b-y5uenfak7p] {
    transform: translateX(-100%);
}

@keyframes show-b-y5uenfak7p {
    0%, 49.99% { opacity: 0; z-index: 1; }
    50%, 100% { opacity: 1; z-index: 5; }
}

.overlay-container[b-y5uenfak7p] {
    position: absolute;
    top: 0;
    inset-inline-start: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: 100;
}

.login-container.right-panel-active .overlay-container[b-y5uenfak7p] {
    transform: translateX(-100%);
}
[dir="rtl"] .login-container.right-panel-active .overlay-container[b-y5uenfak7p] {
    transform: translateX(100%);
}

.overlay[b-y5uenfak7p] {
    background: linear-gradient(135deg, #1a7b7b 0%, #2d9d9d 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: white;
    position: relative;
    inset-inline-start: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.login-container.right-panel-active .overlay[b-y5uenfak7p] {
    transform: translateX(50%);
}
[dir="rtl"] .login-container.right-panel-active .overlay[b-y5uenfak7p] {
    transform: translateX(-50%);
}

.overlay-panel[b-y5uenfak7p] {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.overlay-left[b-y5uenfak7p] {
    transform: translateX(-20%);
}
[dir="rtl"] .overlay-left[b-y5uenfak7p] {
    transform: translateX(20%);
}

.login-container.right-panel-active .overlay-left[b-y5uenfak7p] {
    transform: translateX(0);
}

.overlay-right[b-y5uenfak7p] {
    inset-inline-end: 0;
    transform: translateX(0);
}

.login-container.right-panel-active .overlay-right[b-y5uenfak7p] {
    transform: translateX(20%);
}
[dir="rtl"] .login-container.right-panel-active .overlay-right[b-y5uenfak7p] {
    transform: translateX(-20%);
}

form[b-y5uenfak7p] {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    height: 100%;
    text-align: center;
}

h1[b-y5uenfak7p] {
    font-weight: bold;
    margin-bottom: 10px;
    color: #1a3d5c;
    font-size: 2rem;
}

.social-container[b-y5uenfak7p] {
    margin: 20px 0;
}

.social-container a[b-y5uenfak7p] {
    border: 1px solid #ddd;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    height: 40px;
    width: 40px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.social-container a:hover[b-y5uenfak7p] {
    border-color: #2d9d9d;
    color: #2d9d9d;
}

span[b-y5uenfak7p] {
    font-size: 12px;
    color: #666;
    margin: 10px 0;
}

input[b-y5uenfak7p] {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
    border-radius: 8px;
    font-size: 14px;
}

input:focus[b-y5uenfak7p] {
    outline: none;
    background: white;
    box-shadow: 0 0 0 2px rgba(45, 157, 157, 0.2);
}

button[b-y5uenfak7p] {
    border-radius: 20px;
    border: 1px solid #1a7b7b;
    background: #1a7b7b;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    cursor: pointer;
    margin-top: 10px;
    width: auto;
}

button:active[b-y5uenfak7p] {
    transform: scale(0.95);
}

button:focus[b-y5uenfak7p] {
    outline: none;
}

button.ghost[b-y5uenfak7p] {
    background: transparent;
    border-color: white;
}

.overlay-panel h1[b-y5uenfak7p] {
    color: white;
}

.overlay-panel p[b-y5uenfak7p] {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 20px 0 30px;
}

.logo[b-y5uenfak7p] {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}
