/* /Components/Account/Pages/Login.razor.rz.scp.css */
/* Login Container - Centers the card on screen */
.login-container[b-ht16vhr932] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 1rem;
    background:
        radial-gradient(circle at 20% 50%, rgba(31, 78, 121, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 136, 168, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, #f8fafc 0%, #F2F2F2 100%);
    position: relative;
}

/* Decorative Background Elements */
.login-container[b-ht16vhr932]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 280px;
    background: linear-gradient(135deg, #0E2F4F 0%, #1F4E79 100%);
    clip-path: ellipse(120% 100% at 50% 0%);
    z-index: 0;
}

/* Login Card - Main container */
.login-card[b-ht16vhr932] {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 460px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Header Section */
.login-header[b-ht16vhr932] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 2.75rem 2rem 2.25rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
}

.login-header[b-ht16vhr932]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 5px;
    background: linear-gradient(90deg, #1F4E79 0%, #1E88A8 100%);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 8px rgba(31, 78, 121, 0.3);
}

.login-header h1[b-ht16vhr932] {
    font-size: 2.125rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
    background: linear-gradient(135deg, #1F4E79 0%, #1E88A8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.login-header p[b-ht16vhr932] {
    color: #64748b;
    margin-bottom: 0;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.5;
}

/* Body Section */
.login-body[b-ht16vhr932] {
    padding: 2.5rem 2rem;
}

/* Alert Error */
.alert-error[b-ht16vhr932] {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid #fecaca;
    border-left: 4px solid #dc2626;
    border-radius: 10px;
    padding: 1rem 1.125rem;
    margin-bottom: 1.75rem;
    color: #991b1b;
    font-size: 0.875rem;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.08);
}

.alert-icon[b-ht16vhr932] {
    width: 1.375rem;
    height: 1.375rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Form Groups */
.form-group[b-ht16vhr932] {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label[b-ht16vhr932] {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.form-label[b-ht16vhr932]::before {
    content: '';
    width: 3px;
    height: 14px;
    background: linear-gradient(180deg, #1F4E79 0%, #1E88A8 100%);
    border-radius: 2px;
    margin-right: 0.5rem;
}

.label-row[b-ht16vhr932] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.label-row .form-label[b-ht16vhr932] {
    margin-bottom: 0;
}

.forgot-link[b-ht16vhr932] {
    font-size: 0.8125rem;
    color: #1F4E79;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
    padding-bottom: 2px;
}

.forgot-link[b-ht16vhr932]::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, #1F4E79 0%, #1E88A8 100%);
    transition: width 0.3s ease;
}

.forgot-link:hover[b-ht16vhr932] {
    color: #0E2F4F;
}

.forgot-link:hover[b-ht16vhr932]::after {
    width: 100%;
}

/* Form Controls */
.form-control[b-ht16vhr932] {
    display: block;
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #1e293b;
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.form-control[b-ht16vhr932]::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.form-control:hover[b-ht16vhr932] {
    border-color: #cbd5e1;
    background-color: #ffffff;
}

.form-control:focus[b-ht16vhr932] {
    outline: none;
    border-color: #1E88A8;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(30, 136, 168, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    transform: translateY(-1px);
}

.form-control:disabled[b-ht16vhr932] {
    background-color: #f1f5f9;
    border-color: #e2e8f0;
    opacity: 0.7;
    cursor: not-allowed;
}

/* Validation Feedback */
.validation-feedback[b-ht16vhr932] {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    color: #dc2626;
    font-weight: 500;
    padding-left: 0.25rem;
}

.validation-feedback[b-ht16vhr932]::before {
    content: '⚠';
    margin-right: 0.375rem;
    font-size: 0.875rem;
}

/* Checkbox */
.form-group-checkbox[b-ht16vhr932] {
    margin-bottom: 1.5rem;
}

.checkbox-wrapper[b-ht16vhr932] {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.checkbox-wrapper:hover[b-ht16vhr932] {
    border-color: #cbd5e1;
    background: #ffffff;
}

.checkbox-input[b-ht16vhr932] {
    width: 1.125rem;
    height: 1.125rem;
    border: 2px solid #cbd5e1;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.checkbox-input:checked[b-ht16vhr932] {
    background: linear-gradient(135deg, #1F4E79 0%, #1E88A8 100%);
    border-color: #1F4E79;
}

.checkbox-input:focus[b-ht16vhr932] {
    outline: none;
    box-shadow: 0 0 0 3px rgba(31, 78, 121, 0.15);
}

.checkbox-label[b-ht16vhr932] {
    margin-left: 0.625rem;
    font-size: 0.875rem;
    color: #1e293b;
    cursor: pointer;
    user-select: none;
    font-weight: 500;
}

/* Submit Button */
.btn-submit[b-ht16vhr932] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.875rem 1.25rem;
    margin-top: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #0E2F4F;
    background: linear-gradient(135deg, #E5AC00 0%, #c99400 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(229, 172, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit[b-ht16vhr932]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-submit:hover:not(:disabled)[b-ht16vhr932]::before {
    opacity: 1;
}

.btn-submit:hover:not(:disabled)[b-ht16vhr932] {
    background: linear-gradient(135deg, #c99400 0%, #b38600 100%);
    box-shadow: 0 6px 20px rgba(229, 172, 0, 0.4);
    transform: translateY(-2px);
}

.btn-submit:active:not(:disabled)[b-ht16vhr932] {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(229, 172, 0, 0.3);
}

.btn-submit:focus[b-ht16vhr932] {
    outline: none;
    box-shadow: 0 0 0 4px rgba(229, 172, 0, 0.2), 0 4px 12px rgba(229, 172, 0, 0.3);
}

.btn-submit:disabled[b-ht16vhr932] {
    background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Button Spinner */
.btn-spinner[b-ht16vhr932] {
    display: inline-block;
    width: 1.125rem;
    height: 1.125rem;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spinner-b-ht16vhr932 0.7s linear infinite;
    margin-right: 0.625rem;
}

@keyframes spinner-b-ht16vhr932 {
    to {
        transform: rotate(360deg);
    }
}

/* Footer */
.login-footer[b-ht16vhr932] {
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 2px solid #f1f5f9;
    text-align: center;
}

.footer-text[b-ht16vhr932] {
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 400;
}

.footer-text:last-child[b-ht16vhr932] {
    margin-bottom: 0;
}

.footer-link[b-ht16vhr932] {
    color: #1F4E79;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
    padding-bottom: 2px;
}

.footer-link[b-ht16vhr932]::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1F4E79 0%, #1E88A8 100%);
    transition: width 0.3s ease;
}

.footer-link:hover[b-ht16vhr932] {
    color: #0E2F4F;
}

.footer-link:hover[b-ht16vhr932]::after {
    width: 100%;
}

.footer-link-secondary[b-ht16vhr932] {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    padding-bottom: 2px;
}

.footer-link-secondary[b-ht16vhr932]::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1.5px;
    background: #64748b;
    transition: width 0.3s ease;
}

.footer-link-secondary:hover[b-ht16vhr932] {
    color: #1F4E79;
}

.footer-link-secondary:hover[b-ht16vhr932]::after {
    width: 100%;
    background: linear-gradient(90deg, #1F4E79 0%, #1E88A8 100%);
}

/* External Login Section */
.external-login-section[b-ht16vhr932] {
    margin-top: 2rem;
}

.divider[b-ht16vhr932] {
    display: flex;
    align-items: center;
    margin: 1.75rem 0;
    text-align: center;
}

.divider[b-ht16vhr932]::before,
.divider[b-ht16vhr932]::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

.divider-text[b-ht16vhr932] {
    padding: 0 1rem;
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #ffffff;
}

/* Mobile Responsiveness */
@media (max-width: 580px) {
    .login-container[b-ht16vhr932] {
        padding: 1rem;
        min-height: 100vh;
    }

    .login-container[b-ht16vhr932]::before {
        height: 220px;
    }

    .login-card[b-ht16vhr932] {
        border-radius: 16px;
        max-width: 100%;
    }

    .login-header[b-ht16vhr932] {
        padding: 2.25rem 1.5rem 1.75rem;
    }

    .login-header[b-ht16vhr932]::before {
        width: 60px;
        height: 4px;
    }

    .login-header h1[b-ht16vhr932] {
        font-size: 1.75rem;
    }

    .login-header p[b-ht16vhr932] {
        font-size: 0.875rem;
    }

    .login-body[b-ht16vhr932] {
        padding: 2rem 1.5rem;
    }

    .form-control[b-ht16vhr932] {
        font-size: 1rem;
        padding: 0.75rem 0.875rem;
    }

    .btn-submit[b-ht16vhr932] {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
    }

    .checkbox-wrapper[b-ht16vhr932] {
        padding: 0.625rem 0.875rem;
    }

    .label-row[b-ht16vhr932] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .forgot-link[b-ht16vhr932] {
        font-size: 0.75rem;
    }
}

/* Tablet Responsiveness */
@media (max-width: 768px) and (min-width: 581px) {
    .login-card[b-ht16vhr932] {
        max-width: 440px;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .form-control[b-ht16vhr932] {
        border-width: 3px;
    }

    .btn-submit[b-ht16vhr932] {
        border: 3px solid #0E2F4F;
    }

    .checkbox-input[b-ht16vhr932] {
        border-width: 3px;
    }

    .alert-error[b-ht16vhr932] {
        border-width: 2px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .form-control[b-ht16vhr932],
    .btn-submit[b-ht16vhr932],
    .forgot-link[b-ht16vhr932],
    .footer-link[b-ht16vhr932],
    .footer-link-secondary[b-ht16vhr932],
    .checkbox-input[b-ht16vhr932],
    .checkbox-wrapper[b-ht16vhr932],
    .btn-submit[b-ht16vhr932]::before,
    .forgot-link[b-ht16vhr932]::after,
    .footer-link[b-ht16vhr932]::after,
    .footer-link-secondary[b-ht16vhr932]::after {
        transition: none;
    }

    .btn-spinner[b-ht16vhr932] {
        animation: none;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    .login-container[b-ht16vhr932] {
        background:
            radial-gradient(circle at 20% 50%, rgba(31, 78, 121, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(30, 136, 168, 0.1) 0%, transparent 50%),
            linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    }

    .login-card[b-ht16vhr932] {
        background-color: #1e293b;
        border-color: #334155;
    }

    .login-header[b-ht16vhr932] {
        background: linear-gradient(135deg, rgba(30, 41, 59, 0.98) 0%, rgba(30, 41, 59, 1) 100%);
        border-bottom-color: #334155;
    }

    .login-header p[b-ht16vhr932] {
        color: #94a3b8;
    }

    .login-body[b-ht16vhr932] {
        background-color: transparent;
    }

    .form-label[b-ht16vhr932] {
        color: #e2e8f0;
    }

    .form-control[b-ht16vhr932] {
        background-color: #0f172a;
        border-color: #334155;
        color: #e2e8f0;
    }

    .form-control[b-ht16vhr932]::placeholder {
        color: #64748b;
    }

    .form-control:hover[b-ht16vhr932] {
        background-color: #1e293b;
        border-color: #475569;
    }

    .form-control:focus[b-ht16vhr932] {
        background-color: #1e293b;
        border-color: #1E88A8;
    }

    .checkbox-wrapper[b-ht16vhr932] {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        border-color: #334155;
    }

    .checkbox-wrapper:hover[b-ht16vhr932] {
        background-color: #1e293b;
        border-color: #475569;
    }

    .checkbox-label[b-ht16vhr932] {
        color: #e2e8f0;
    }

    .footer-text[b-ht16vhr932] {
        color: #94a3b8;
    }

    .alert-error[b-ht16vhr932] {
        background: linear-gradient(135deg, #450a0a 0%, #7f1d1d 100%);
        border-color: #991b1b;
        color: #fca5a5;
    }

    .divider-text[b-ht16vhr932] {
        background-color: #1e293b;
    }
}
/* /Components/Account/Pages/Register.razor.rz.scp.css */
/* Register Container - Centers the card on screen */
.register-container[b-1xyeecrwno] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 1rem;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 105, 148, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 163, 163, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

/* Decorative Background Elements */
.register-container[b-1xyeecrwno]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 280px;
    background: linear-gradient(135deg, #006994 0%, #00A3A3 100%);
    clip-path: ellipse(120% 100% at 50% 0%);
    z-index: 0;
}

/* Register Card - Main container */
.register-card[b-1xyeecrwno] {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Header Section */
.register-header[b-1xyeecrwno] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 2.75rem 2rem 2.25rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
}

.register-header[b-1xyeecrwno]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 5px;
    background: linear-gradient(90deg, #006994 0%, #00A3A3 100%);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 8px rgba(0, 105, 148, 0.3);
}

.register-header h1[b-1xyeecrwno] {
    font-size: 2.125rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
    background: linear-gradient(135deg, #006994 0%, #00A3A3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.register-header p[b-1xyeecrwno] {
    color: #64748b;
    margin-bottom: 0;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.5;
}

/* Body Section */
.register-body[b-1xyeecrwno] {
    padding: 2.5rem 2rem;
}

/* Alert Error */
.alert-error[b-1xyeecrwno] {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid #fecaca;
    border-left: 4px solid #dc2626;
    border-radius: 10px;
    padding: 1rem 1.125rem;
    margin-bottom: 1.75rem;
    color: #991b1b;
    font-size: 0.875rem;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.08);
}

.alert-icon[b-1xyeecrwno] {
    width: 1.375rem;
    height: 1.375rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Form Groups */
.form-group[b-1xyeecrwno] {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label[b-1xyeecrwno] {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.form-label[b-1xyeecrwno]::before {
    content: '';
    width: 3px;
    height: 14px;
    background: linear-gradient(180deg, #006994 0%, #00A3A3 100%);
    border-radius: 2px;
    margin-right: 0.5rem;
}

/* Form Controls */
.form-control[b-1xyeecrwno] {
    display: block;
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #1e293b;
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.form-control[b-1xyeecrwno]::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.form-control:hover[b-1xyeecrwno] {
    border-color: #cbd5e1;
    background-color: #ffffff;
}

.form-control:focus[b-1xyeecrwno] {
    outline: none;
    border-color: #006994;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 105, 148, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    transform: translateY(-1px);
}

.form-control:disabled[b-1xyeecrwno] {
    background-color: #f1f5f9;
    border-color: #e2e8f0;
    opacity: 0.7;
    cursor: not-allowed;
}

/* Validation Feedback */
.validation-feedback[b-1xyeecrwno] {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    color: #dc2626;
    font-weight: 500;
    padding-left: 0.25rem;
}

.validation-feedback[b-1xyeecrwno]::before {
    content: '⚠';
    margin-right: 0.375rem;
    font-size: 0.875rem;
}

/* Password Strength Indicator */
.password-strength[b-1xyeecrwno] {
    margin-top: 0.875rem;
    padding: 0.875rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.strength-bar-container[b-1xyeecrwno] {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.625rem;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.strength-bar[b-1xyeecrwno] {
    height: 100%;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.strength-bar[b-1xyeecrwno]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
}

.strength-text[b-1xyeecrwno] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.strength-icon[b-1xyeecrwno] {
    font-size: 1rem;
    line-height: 1;
}

.strength-weak[b-1xyeecrwno] {
    color: #dc2626;
}

.strength-fair[b-1xyeecrwno] {
    color: #f59e0b;
}

.strength-good[b-1xyeecrwno] {
    color: #10b981;
}

.strength-strong[b-1xyeecrwno] {
    color: #059669;
}

/* Submit Button */
.btn-submit[b-1xyeecrwno] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.875rem 1.25rem;
    margin-top: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #006994 0%, #005580 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 105, 148, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit[b-1xyeecrwno]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-submit:hover:not(:disabled)[b-1xyeecrwno]::before {
    opacity: 1;
}

.btn-submit:hover:not(:disabled)[b-1xyeecrwno] {
    background: linear-gradient(135deg, #005580 0%, #004466 100%);
    box-shadow: 0 6px 20px rgba(0, 105, 148, 0.4);
    transform: translateY(-2px);
}

.btn-submit:active:not(:disabled)[b-1xyeecrwno] {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 105, 148, 0.3);
}

.btn-submit:focus[b-1xyeecrwno] {
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 105, 148, 0.2), 0 4px 12px rgba(0, 105, 148, 0.3);
}

.btn-submit:disabled[b-1xyeecrwno] {
    background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Button Spinner */
.btn-spinner[b-1xyeecrwno] {
    display: inline-block;
    width: 1.125rem;
    height: 1.125rem;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spinner-b-1xyeecrwno 0.7s linear infinite;
    margin-right: 0.625rem;
}

@keyframes spinner-b-1xyeecrwno {
    to {
        transform: rotate(360deg);
    }
}

/* Footer */
.register-footer[b-1xyeecrwno] {
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 2px solid #f1f5f9;
    text-align: center;
}

.footer-text[b-1xyeecrwno] {
    margin-bottom: 0;
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 400;
}

.footer-link[b-1xyeecrwno] {
    color: #006994;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
    padding-bottom: 2px;
}

.footer-link[b-1xyeecrwno]::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #006994 0%, #00A3A3 100%);
    transition: width 0.3s ease;
}

.footer-link:hover[b-1xyeecrwno] {
    color: #005580;
}

.footer-link:hover[b-1xyeecrwno]::after {
    width: 100%;
}

/* External Login Section */
.external-login-section[b-1xyeecrwno] {
    margin-top: 2rem;
}

.divider[b-1xyeecrwno] {
    display: flex;
    align-items: center;
    margin: 1.75rem 0;
    text-align: center;
}

.divider[b-1xyeecrwno]::before,
.divider[b-1xyeecrwno]::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

.divider-text[b-1xyeecrwno] {
    padding: 0 1rem;
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #ffffff;
}

/* Mobile Responsiveness */
@media (max-width: 580px) {
    .register-container[b-1xyeecrwno] {
        padding: 1rem;
        min-height: 100vh;
    }

    .register-container[b-1xyeecrwno]::before {
        height: 220px;
    }

    .register-card[b-1xyeecrwno] {
        border-radius: 16px;
        max-width: 100%;
    }

    .register-header[b-1xyeecrwno] {
        padding: 2.25rem 1.5rem 1.75rem;
    }

    .register-header[b-1xyeecrwno]::before {
        width: 60px;
        height: 4px;
    }

    .register-header h1[b-1xyeecrwno] {
        font-size: 1.75rem;
    }

    .register-header p[b-1xyeecrwno] {
        font-size: 0.875rem;
    }

    .register-body[b-1xyeecrwno] {
        padding: 2rem 1.5rem;
    }

    .form-control[b-1xyeecrwno] {
        font-size: 1rem;
        padding: 0.75rem 0.875rem;
    }

    .btn-submit[b-1xyeecrwno] {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
    }

    .password-strength[b-1xyeecrwno] {
        padding: 0.75rem 0.875rem;
    }
}

/* Tablet Responsiveness */
@media (max-width: 768px) and (min-width: 581px) {
    .register-card[b-1xyeecrwno] {
        max-width: 460px;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .form-control[b-1xyeecrwno] {
        border-width: 3px;
    }

    .btn-submit[b-1xyeecrwno] {
        border: 3px solid #004466;
    }

    .strength-bar-container[b-1xyeecrwno] {
        border: 2px solid #64748b;
    }

    .alert-error[b-1xyeecrwno] {
        border-width: 2px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .form-control[b-1xyeecrwno],
    .btn-submit[b-1xyeecrwno],
    .footer-link[b-1xyeecrwno],
    .strength-bar[b-1xyeecrwno],
    .btn-submit[b-1xyeecrwno]::before,
    .footer-link[b-1xyeecrwno]::after {
        transition: none;
    }

    .btn-spinner[b-1xyeecrwno] {
        animation: none;
    }

    .strength-bar[b-1xyeecrwno]::after {
        display: none;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    .register-container[b-1xyeecrwno] {
        background:
            radial-gradient(circle at 20% 50%, rgba(0, 105, 148, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(0, 163, 163, 0.1) 0%, transparent 50%),
            linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    }

    .register-card[b-1xyeecrwno] {
        background-color: #1e293b;
        border-color: #334155;
    }

    .register-header[b-1xyeecrwno] {
        background: linear-gradient(135deg, rgba(30, 41, 59, 0.98) 0%, rgba(30, 41, 59, 1) 100%);
        border-bottom-color: #334155;
    }

    .register-header p[b-1xyeecrwno] {
        color: #94a3b8;
    }

    .register-body[b-1xyeecrwno] {
        background-color: transparent;
    }

    .form-label[b-1xyeecrwno] {
        color: #e2e8f0;
    }

    .form-control[b-1xyeecrwno] {
        background-color: #0f172a;
        border-color: #334155;
        color: #e2e8f0;
    }

    .form-control[b-1xyeecrwno]::placeholder {
        color: #64748b;
    }

    .form-control:hover[b-1xyeecrwno] {
        background-color: #1e293b;
        border-color: #475569;
    }

    .form-control:focus[b-1xyeecrwno] {
        background-color: #1e293b;
        border-color: #00A3A3;
    }

    .password-strength[b-1xyeecrwno] {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        border-color: #334155;
    }

    .footer-text[b-1xyeecrwno] {
        color: #94a3b8;
    }

    .alert-error[b-1xyeecrwno] {
        background: linear-gradient(135deg, #450a0a 0%, #7f1d1d 100%);
        border-color: #991b1b;
        color: #fca5a5;
    }
}
/* /Components/CascadingAppState.razor.rz.scp.css */
/* /Components/Category/AddCategory.razor.rz.scp.css */
/* /Components/Category/ListCategory.razor.rz.scp.css */
/* /Components/Category/MainCategory.razor.rz.scp.css */
/* /Components/Certification/AddCertification.razor.rz.scp.css */
/* /Components/Certification/ListOfCertification.razor.rz.scp.css */
/* /Components/Certification/MainCertification.razor.rz.scp.css */
/* /Components/Customers/Customer.razor.rz.scp.css */
/* /Components/Customers/CustomersList.razor.rz.scp.css */
/* /Components/Customers/MainCustomer.razor.rz.scp.css */
/* /Components/Equipment/AddEquipment.razor.rz.scp.css */
.e-data-form .e-form-layout .e-label-position-top:empty[b-c5630er5qy] {
    display: none;
}

/* /Components/Equipment/ListEquipment.razor.rz.scp.css */
/* /Components/Equipment/MainEquipment.razor.rz.scp.css */
/* /Components/Inventory/AddInvetory.razor.rz.scp.css */
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-yz69h5fw1d] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-yz69h5fw1d] {
    flex: 1;
}

.sidebar[b-yz69h5fw1d] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-yz69h5fw1d] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-yz69h5fw1d]  a, .top-row[b-yz69h5fw1d]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-yz69h5fw1d]  a:hover, .top-row[b-yz69h5fw1d]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-yz69h5fw1d]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-yz69h5fw1d] {
        justify-content: space-between;
    }

    .top-row[b-yz69h5fw1d]  a, .top-row[b-yz69h5fw1d]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-yz69h5fw1d] {
        flex-direction: row;
    }

    .sidebar[b-yz69h5fw1d] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-yz69h5fw1d] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-yz69h5fw1d]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-yz69h5fw1d], article[b-yz69h5fw1d] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-yz69h5fw1d] {
    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-yz69h5fw1d] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* NavMenu customizations */
.nav-icon[b-i1873dk0fu] {
    width: 1.25rem;
    text-align: center;
    margin-right: 0.5rem;
}

.navbar .nav-link.active[b-i1873dk0fu] {
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.375rem;
}

.navbar .nav-link[b-i1873dk0fu] {
    transition: all 0.2s ease-in-out;
}

.navbar .nav-link:hover[b-i1873dk0fu] {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 0.375rem;
}

.dropdown-menu[b-i1873dk0fu] {
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 0;
}

.dropdown-item[b-i1873dk0fu] {
    transition: all 0.15s ease-in-out;
}

.dropdown-item:hover[b-i1873dk0fu] {
    background-color: var(--bs-primary);
    color: white;
}

.dropdown-item:hover .nav-icon[b-i1873dk0fu] {
    color: white;
}

.navbar-brand[b-i1873dk0fu] {
    font-size: 1.25rem;
    letter-spacing: 0.025em;
}
/* /Components/Manufacturer/AddManufacturer.razor.rz.scp.css */
/* /Components/Manufacturer/ListManufacturer.razor.rz.scp.css */
/* /Components/Manufacturer/MainManufacturer.razor.rz.scp.css */
/* /Components/Rental/ListRental.razor.rz.scp.css */
/* /Components/Rental/MainRental.razor.rz.scp.css */
/* /Components/Rental/RentalStatus.razor.rz.scp.css */
