.container {
    background-color: #000819;
    max-width: 600px;
    margin: 0 auto; /* إزالة المسافة العلوية من المارجن الافتراضي */
    padding: 50px 20px 20px; /* تعديل المسافة العلوية مع الحواف السفلية والجانبية */
    border-radius: 10px;
    text-align: right;
    color: #ffffff;
}

h2 {
    color: #a6872d;
    text-align: center;
    margin-top: 20px; /* إضافة مسافة علوية صغيرة لضبط المسافة بشكل أفضل */
}

p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; /* لجعل الخط أسمك */
    font-size: 1.1em; /* تكبير حجم الخط */
}

input[type="text"], input[type="email"], input[type="tel"], select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1em;
    box-sizing: border-box;
    margin-bottom: 15px;
}

select {
    background-color: #fff;
    color: #000;
}

.submit-btn {
    background-color: #a6872d;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.submit-btn:hover {
    background-color: #856404;
}

#popup-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff3cd;
    color: #856404;
    padding: 20px;
    border: 1px solid #ffeeba;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
