.enove-form-container {
    max-width: 500px;
    margin: 20px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-family: inherit;
    direction: rtl;
    text-align: right;
}

.enove-field {
    margin-bottom: 20px;
}

.enove-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d3748;
    font-size: 0.95rem;
}

.enove-field input,
.enove-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.enove-field input:focus,
.enove-field textarea:focus {
    outline: none;
    border-color: #4299e1;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.15);
}

.enove-field textarea {
    height: 100px;
    resize: vertical;
}

.enove-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #3182ce 0%, #2b6cb0 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 10px;
}

.enove-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(49, 130, 206, 0.4);
}

.enove-submit-btn:active {
    transform: translateY(0);
}

.enove-response {
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
    display: none;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
}

.enove-response.success {
    display: block;
    background: #f0fff4;
    color: #22543d;
    border: 2px solid #48bb78;
    box-shadow: 0 4px 6px rgba(72, 187, 120, 0.1);
}

.enove-response.error {
    display: block;
    background: #fff5f5;
    color: #9b2c2c;
    border: 2px solid #fc8181;
}

.enove-submit-btn.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.enove-submit-btn.loading::after {
    content: "...";
}