/* أنماط خاصة بصفحة تسجيل التاجر */
form {
    max-width: 90%; /* عرض النموذج بنسبة 90% من الشاشة */
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--primary-color);
    text-align: right;
    font-size: 1rem;
}

form input, form select, form textarea {
    width: 100%; /* عرض الحقول بنسبة 100% من النموذج */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    text-align: right;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box; /* تضمن أن الحقول لا تخرج عن الإطار */
}

form input:focus, form select:focus, form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(0, 150, 136, 0.3);
    outline: none;
}

form textarea {
    resize: vertical;
    min-height: 120px;
}

form button {
    background-color: var(--primary-color);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 10px;
}

form button:hover {
    background-color: #00796b;
    transform: translateY(-2px);
}

.message {
    background-color: #ffcc00;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin: 20px auto;
    max-width: 500px;
    font-weight: bold;
    color: #333;
}

/* تنسيق خاص لحقول الإدخال الإضافية */
#other_governorate, #other_category {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    text-align: right;
    background-color: #f9f9f9;
    display: none;
    box-sizing: border-box; /* تضمن أن الحقول لا تخرج عن الإطار */
}

/* تنسيق خاص للقوائم المنسدلة */
select {
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg fill="%23009688" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center/15px;
    padding-right: 40px;
}

/* تنسيق خاص للأزرار */
.back-to-home {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, #ff9800, #f44336);
    color: white;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.back-to-home:hover {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}



@media (max-width: 768px) {
    form {
        padding: 15px;
    }

    form input, form select, form textarea {
        padding: 8px;
        font-size: 0.9rem;
    }

    form button {
        padding: 10px;
        font-size: 0.9rem;
    }

    .back-to-home {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

  
}