/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-btpqn3a8m7] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-btpqn3a8m7] {
    flex: 1;
}

.sidebar[b-btpqn3a8m7] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}


.top-row[b-btpqn3a8m7] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-btpqn3a8m7]  a, .top-row[b-btpqn3a8m7]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-btpqn3a8m7]  a:hover, .top-row[b-btpqn3a8m7]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-btpqn3a8m7]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-btpqn3a8m7] {
        justify-content: space-between;
    }

    .top-row[b-btpqn3a8m7]  a, .top-row[b-btpqn3a8m7]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-btpqn3a8m7] {
        flex-direction: row;
    }

    .sidebar[b-btpqn3a8m7] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-btpqn3a8m7] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-btpqn3a8m7]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-btpqn3a8m7], article[b-btpqn3a8m7] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Pages/Home.razor.rz.scp.css */
body[b-jxjc8qdzo7] {
    display:flex;
    align-items:center;
    width:100%;
    height:100%;
    background-color: cornflowerblue;
}
/* /Pages/Login.razor.rz.scp.css */
.form-floating > .form-control:focus ~ label[b-w9oillcy2j],
.form-floating > .form-control:not(:placeholder-shown) ~ label[b-w9oillcy2j] {
    transform: translateY(-1.5rem) scale(0.85); /* To move Label higher */
    opacity: 1;
    color: #6c757d;
}

.icon-container[b-w9oillcy2j] {
    display: flex;
    position: relative;
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

    .icon-container i[b-w9oillcy2j] {
        position: absolute;
        display:flex;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

.fa-eye[b-w9oillcy2j] {
    opacity: 0;
    transform: scale(.8);
}

.fa-eye-slash[b-w9oillcy2j] {
    opacity: 1;
    transform: scale(1);
}

.show-password .fa-eye[b-w9oillcy2j] {
    opacity: 1;
    transform: scale(1);
}

.show-password .fa-eye-slash[b-w9oillcy2j] {
    opacity: 0;
    transform: scale(.8);
}
