/* Form disabled styles */
.form-disabled {
    pointer-events: none;
    opacity: 0.5;
    position: relative;
}

.form-disabled::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(2px);
    border-radius: 5px;
    z-index: 5;
}
