/* 🌟 تنسيق عام للصفحة */
body {
    font-family: 'Tajawal', sans-serif;
    background: linear-gradient(135deg, #ececec, #dfe9f3);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200%;
    width: 100%;
    margin: 0;
    padding: 15px;
    text-align: center;


}

/* 🏷️ تنسيق العناوين */


.wrapper2 {
    
    display: flex;
    flex-direction: column;
    align-items: center; /* يجعل العنوان والفورم في المنتصف */
    margin-top: 0px; /* يعطي مسافة كافية من الأعلى */
}
.wrapper3{display: flex;
    flex-direction: column;
    align-items: center; }
.wrapper3 h2 {
    color: #2f7754; /* لون العنوان */
    font-size: 22px; /* حجم الخط */
    font-weight: bold; /* جعل العنوان بارزًا */
}.wrapper3 h4 {
    color: #ba1717; /* لون العنوان */
    font-size: 15px; /* حجم الخط */
    font-weight: bold; /* جعل العنوان بارزًا */
    align-items: center;
}

.wrapper{
    display: flex;
    justify-content: center;
    background: #ffffff8a;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px; /* 🔥 تصغير عرض الفورم */
    text-align: left;
    animation: fadeIn 0.7s ease-in-out;
    margin-top: 20px;
    font-weight: bold;

}



/* 🎯 تنسيق الحقول */
.wrapper input,
.wrapper textarea,
.wrapper select {
    width: 100%;
    padding: 8px; /* 🔥 تصغير الحقول */
    margin: 6px 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
    background-color: #f9f9f9;
}

/* تأثير عند النقر */
.wrapper input:focus,
.wrapper textarea:focus,
.wrapper select:focus {
    border-color: #007bff;
    box-shadow: 0px 0px 6px rgba(0, 123, 255, 0.3);
    background-color: #fff;
}


/* تأثير عند النقر */
input:focus, textarea:focus, select:focus {
    border-color: #007bff;
    box-shadow: 0px 0px 6px rgba(0, 123, 255, 0.3);
    background-color: #fff;
}

/* 🎨 تصميم الأزرار */
button {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 10px; /* 🔥 تصغير الزر */
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-weight: bold;
}

button:hover {
    background: linear-gradient(135deg, #0056b3, #004494);
    transform: scale(1.03);
}

/* ✅ رسالة النجاح */
#response {
    margin-top: 8px;
    color: #28a745;
    font-weight: bold;
    font-size: 14px;
}


/* 💡 تأثير عند التحميل */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: }
    }