/* /Pages/Login.razor.rz.scp.css */
.main[b-taa9qufqsv] {
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    background-color: var(--neu-1);
    overflow: hidden;
}

.login-form[b-taa9qufqsv], .forgot-password-form[b-taa9qufqsv], .otp-password-form[b-taa9qufqsv] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 120%; /* Flexible width */
    max-width: 400px; /* Maximum width to avoid overflow */
    padding: 20px;
    border-radius: 12px;
    background-color: rgba(166, 171, 211, 0.15);
    backdrop-filter: blur(10px);
}

h1[b-taa9qufqsv] {
    color: #0c2d5f;
}

.anchor-txt[b-taa9qufqsv] 
{
    color: blue;
}
.anchor-txt :hover[b-taa9qufqsv] {
    cursor: pointer;
}

.form-control[b-taa9qufqsv] {
    width: 100%; /* Ensure input elements are 100% of their parent */
    padding: 0.5rem; /* Add some padding for better UX */
    box-sizing: border-box; /* Ensure padding is included in the width */
}


.radzen-login[b-taa9qufqsv] {
    width: 100%; /* Make the login component take full width of its container */
}

    /* Specific styling for RadzenLogin button */
    .radzen-login .login-button[b-taa9qufqsv] {
        width: 100%; /* Ensure the button also takes full width */
        max-width: 300px; /* Optional: Set a max width for the button */
        margin-top: 16px; /* Add margin if needed */
    }

/* login.razor.css */
.loading-overlay[b-taa9qufqsv] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure the loader is above other elements */
}

.hidden[b-taa9qufqsv] {
    display: none;
}

.spinner-border[b-taa9qufqsv] {
    width: 3rem;
    height: 3rem;
    border-width: 0.3em;
}

/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-utmdnp0gub] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-utmdnp0gub] {
    flex: 1;
}

.sidebar[b-utmdnp0gub] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-utmdnp0gub] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-utmdnp0gub]  a, .top-row[b-utmdnp0gub]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-utmdnp0gub]  a:hover, .top-row[b-utmdnp0gub]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-utmdnp0gub]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-utmdnp0gub] {
        display: none;
    }

    .top-row.auth[b-utmdnp0gub] {
        justify-content: space-between;
    }

    .top-row[b-utmdnp0gub]  a, .top-row[b-utmdnp0gub]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-utmdnp0gub] {
        flex-direction: row;
    }

    .sidebar[b-utmdnp0gub] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-utmdnp0gub] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-utmdnp0gub]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-utmdnp0gub], article[b-utmdnp0gub] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-u25j7hkvsz] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-u25j7hkvsz] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-u25j7hkvsz] {
    font-size: 1.1rem;
}

.oi[b-u25j7hkvsz] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-u25j7hkvsz] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-u25j7hkvsz] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-u25j7hkvsz] {
        padding-bottom: 1rem;
    }

    .nav-item[b-u25j7hkvsz]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-u25j7hkvsz]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-u25j7hkvsz]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-u25j7hkvsz] {
        display: none;
    }

    .collapse[b-u25j7hkvsz] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
