.service_popup .error-field input,
.help_send_popup .error-field textarea {
    border-color: #ff0000 !important;
    background-color: #fff8f8;
}

.service_popup .error-field {
    position: relative;
}

.service_popup .field-error-message {
    color: #ff0000;
    font-size: 12px;
    margin-top: 5px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service_popup input.error-field,
.service_popup textarea.error-field {
    border-color: #ff0000;
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.1);
}