body {
    font-family: Arial, sans-serif;
    direction: rtl;
    text-align: center;
    margin: 0;
    padding: 0;
}


.landing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* שינוי מ-height ל-min-height */
    height: auto; /* מאפשר רקע שמתאים לתוכן */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* משאיר את הרקע קבוע בגלילה */
    width: 100%; /* יוודא שהרובליקה תישאר בתוך המסגרת */
    padding: 20px;
}

.form-container {
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%; /* יוודא שהרובליקה תישאר בתוך המסגרת */
    box-sizing: border-box;
}

.logo {
    width: 300px;
    margin-bottom: 10px;
}

h2 {
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    text-align: right;
    font-weight: bold;
    margin-top: 10px;
}

input, textarea {
    width: 100%; /* מבטיח שהתיבה לא תחרוג מהרובליקה */
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* מבטיח שהרוחב כולל את הפדינג */
    text-align: right; /* מיישר את הטקסט לימין בכל השדות */
}

textarea {
    height: 80px;
    resize: vertical; /* מאפשר למשתמש להגדיל אבל רק לגובה */
}

button {
    font-size: 20px; /* קובע את גודל הטקסט בכפתור */
    font-weight: bold; /* הופך את הטקסט למודגש */
    background: #28a745;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
}

button:hover {
    background: #218838;
}


/* חוסם גלילה אופקית בכל המסכים */
body {
    overflow-x: hidden;
    width: 100%;
}

/* מוודא שגם ה-HTML לא מאפשר גלילה אופקית */
html {
    overflow-x: hidden;
    width: 100%;
}

#submit-btn:disabled {
    background-color: #ccc; /* רקע אפור כשהכפתור מושבת */
    cursor: not-allowed; /* מצביע שמראה שהכפתור חסום */
    opacity: 0.6; /* שקיפות קלה */
    transition: background-color 0.3s ease; /* שינוי רקע חלק */
}
