  @font-face {
      font-family: 'Assistant';
      src: url('/fonts/Assistant-Regular.woff2') format('woff2');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
  }
  
  @font-face {
      font-family: 'Assistant';
      src: url('/fonts/Assistant-SemiBold.woff2') format('woff2');
      font-weight: 600;
      font-style: normal;
      font-display: swap;
  }
  
  
        body {
            font-family: "Assistant","Open Sans" ;
            background-color: #f3f6ff;
            text-align: center;
            padding: 0;
            margin: 0;
            background-image: url('/images/BG.png'); /* הוספת קובץ ה-SVG כרקע */
            background-size: cover;  /* כדי למלא את כל המסך */
            background-position: center;  /* למרכז את הרקע */
            background-repeat: no-repeat;  /* לא לחזור על הרקע */
            height: 100vh;  /* הגדרת גובה של 100% מגובה המסך */
        }

        .header {
            background-color: #FFFFFF;
            padding: 20px;
            display: flex;
            justify-content: space-between; /* מיקום הלוגו והשפה */
            align-items: center;
        }

        .header-left {
            display: flex;
            gap: 20px; /* רווח בין הלוגואים */
        }

        .header-left img {
            height: 40px;
        }

        .login-container {
            background-color: #16213D;
            border-radius: 16px;
            padding: 40px;
            max-width: 400px;
            margin: 50px auto;
            color: white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            direction: rtl;  /* בהתחלה נבחר עברית */
        }

        h1 {
            margin: 0;  /* איפוס המרווח החיצוני */
            padding: 10px 0;  /* הוספת ריווח פנימי */
            white-space: nowrap;  /* מניעת שבירת שורה */
        }

        .links p {
            margin: 0;  /* איפוס המרווח החיצוני של תגית ה-<p> */
            padding: 10px 0;  /* הוספת ריווח פנימי */
            display: inline;  /* מציג את הפסקאות כאלמנטים אינליין */
            white-space: nowrap;  /* מונע שבירת שורה */
        }

        input {
            width: 90%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
            text-align: right;  /* יישור הטקסט לימין */
            direction: rtl;  /* כיוון עברית */
        }

        button {
            background-color: #465ef2;
            color: white;
            border: none;
            padding: 10px;
            border-radius: 5px;
            width: 95%;
            font-size: 18px;
        }
        
        .button_small {
            background-color: #465ef2;
            color: white;
            border: none;
            border-radius: 5px;
            width: 90%;
            font-size: 12px;
        }
         select {
	            background-color: white;
	            border: none;
	            padding: 10px;
	            border-radius: 5px;
	            width: 95%;
	            font-size: 18px;
        }
 	.button_transparent {
            background-color : transparent;
            color: white;
            border: none;
            padding: 10px;
            border-radius: 5px;
            width: 95%;
            font-size: 18px;
        }
        a {
            color: white;
            text-decoration: none;
        }

        .links {
            margin-top: 20px;
             color: white;
             
        }
        
        .comments {
	    color: white;
	    border: 1px solid white;
	    width: 50%;
	    border-radius:5px; 
        }

        .footer {
            margin-top: 30px;
            color: #16213D;
        }

        .language-selector {
         position: relative;
         display: inline-block;
         cursor: pointer;
         }
     
         .language-selector span {
             font-size: 16px;
             color: #16213D;
             display: flex;
             align-items: center;
             gap: 5px;
         }
     
         .language-selector svg {
             width: 20px;
             height: 20px;
         }
     
         .dropdown {
             display: none;
             position: absolute;
             background-color: white;
             min-width: 100px;
             box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
             z-index: 1;
             border-radius: 5px;
             top: 100%;  /* מיקום מתחת ל-language selector */
             right: 0;   /* יישור לימין */
         }
     
         .dropdown a {
             color: #16213D;
             padding: 8px 12px;
             text-decoration: none;
             display: block;
             text-align: left;
         }
     
         .dropdown a:hover {
             background-color: #f3f6ff;
         }
     
         .show {
             display: block;
         }
         .error-message {
         color: #F17D72;
         margin: 5px 0;
         display: none;
         
    }

 .ovdimnet-login-container {
            background-color: #16213D;
            border-radius: 16px;
            padding: 40px;
            max-width: 500px;
            margin: 50px auto;
            color: white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            direction: rtl;  /* בהתחלה נבחר עברית */
        }