#captchaCanvas {
  width: 150px;
  height: 40px;
  border: 2px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  display: block;
  min-width: 90px;
}
.captcha-container {
    display: flex;
    gap: 10px; /* مسافة بين العناصر */
    padding-bottom: 20px;
    align-items: center;
    justify-content: center; /* لضمان محاذاة العناصر في الوسط */
}
.captchaInput{
    width: 150px;
    height: 40px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    min-width: 120px;
    box-sizing: border-box; /* لضمان أن الحشو والحدود لا تؤثر على العرض الإجمالي */
}