<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<title>تفصيل حسب الطلب</title>
<style>
body {
font-family: 'Tahoma', Arial, sans-serif;
background: #f7f7f7;
}
.form-container {
max-width: 500px;
margin: 40px auto;
background: #fff;
padding: 25px;
border-radius: 12px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
h2 {
text-align: center;
margin-bottom: 20px;
color: #333;
}
label {
display: block;
margin-bottom: 6px;
font-weight: bold;
color: #444;
}
input, textarea {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border-radius: 8px;
border: 1px solid #ccc;
font-size: 14px;
}
textarea {
resize: vertical;
min-height: 100px;
}
input[type="file"] {
padding: 6px;
}
button {
width: 100%;
padding: 12px;
background: #1f7a5c;
color: #fff;
border: none;
border-radius: 8px;
font-size: 16px;
cursor: pointer;
}
button:hover {
background: #16634a;
}
</style>
</head>
<body>
طلب تفصيل خاص
<form action="#" method="post" enctype="multipart/form-data">
<input type="text" id="name" name="name" required>
<input type="tel" id="phone" name="phone" placeholder="05xxxxxxxx" required>
<input type="email" id="email" name="email">
<textarea id="details" name="details" placeholder="اكتب تفاصيل التفصيل المطلوبة..."></textarea>
<input type="file" id="file" name="file">
<button type="submit">إرسال الطلب</button>
</form>
</body>
</html>