/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-0l5zq4sb4p] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-0l5zq4sb4p] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Pages/Login.razor.rz.scp.css */
.login-screen[b-0w1v65kzhi] {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg,#1e293b 0%,#0f172a 100%);
    padding: 20px;
}

.login-box[b-0w1v65kzhi] {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0,0,0,.30);
}

.login-logo[b-0w1v65kzhi] {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 20px;
    background: #1a73e8;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    font-weight: bold;
}

.login-box h1[b-0w1v65kzhi] {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.subtitle[b-0w1v65kzhi] {
    text-align: center;
    color: #64748b;
    margin-bottom: 28px;
    font-size: 13px;
}

.login-box h2[b-0w1v65kzhi] {
    text-align: center;
    color: #1a73e8;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.form-group[b-0w1v65kzhi] {
    margin-bottom: 18px;
}

    .form-group label[b-0w1v65kzhi] {
        display: block;
        margin-bottom: 6px;
        color: #1e293b;
        font-weight: 600;
        font-size: 14px;
    }

.input-wrapper[b-0w1v65kzhi] {
    position: relative;
}

    .input-wrapper i[b-0w1v65kzhi] {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: #64748b;
        font-size: 14px;
    }

    .input-wrapper input[b-0w1v65kzhi] {
        width: 100%;
        height: 46px;
        border: 1px solid #dbe3ea;
        border-radius: 8px;
        padding-left: 42px;
        padding-right: 12px;
        font-size: 14px;
        transition: .2s;
    }

        .input-wrapper input:focus[b-0w1v65kzhi] {
            outline: none;
            border-color: #1a73e8;
            box-shadow: 0 0 0 3px rgba(26,115,232,.15);
        }

.remember-row[b-0w1v65kzhi] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 20px 0;
    color: #64748b;
    font-size: 14px;
}

.btn[b-0w1v65kzhi] {
    width: 100%;
    height: 46px;
    border: none;
    border-radius: 8px;
    background: #1a73e8;
    color: white;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: .2s;
}

    .btn:hover[b-0w1v65kzhi] {
        background: #1557b0;
    }

    .btn:disabled[b-0w1v65kzhi] {
        opacity: .7;
        cursor: not-allowed;
    }

.login-footer[b-0w1v65kzhi] {
    margin-top: 22px;
    text-align: center;
}

    .login-footer a[b-0w1v65kzhi] {
        color: #1a73e8;
        text-decoration: none;
        font-size: 14px;
    }

        .login-footer a:hover[b-0w1v65kzhi] {
            text-decoration: underline;
        }

.alert[b-0w1v65kzhi] {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-danger[b-0w1v65kzhi] {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

@media (max-width:768px) {

    .login-box[b-0w1v65kzhi] {
        padding: 30px 25px;
    }

    .login-logo[b-0w1v65kzhi] {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .login-box h1[b-0w1v65kzhi] {
        font-size: 24px;
    }
}
