/* Google Font CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
body {
  background-color: #f2f2f2;
  font-family: 'Solitero', sans-serif;
  text-align: center;
  background-image: url("background.webp");
  margin: 0;
}
body {
  filter: blur(5px);
  transition: filter 0.3s ease;
  filter: none;

}
/* סגנון למסכים ברוחב עד 600 פיקסלים (מובייל) */
@media (max-width: 600px) {
  .form-container {
    width: 90%; /* או ערך אחר המתאים לך לתצוגה במובייל */
  }
      .form-row {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-bottom: 10px;
    }
    
    .form-row label {
      font-weight: bold;
        margin-right: 10px;
        font-size: 14px;
        font-family: 'Rubik', sans-serif;

    }

    .form-row span {
      font-size: 14px;
      font-weight: normal;
      white-space: pre; /* הוסף קישור זה כדי לשמור על רווחים ותוויות מיוחדות */
      font-family: 'Rubik', sans-serif;

    }
    h5{
      width: 90%;
  }
}

/* סגנון למסכים ברוחב מעל 600 פיקסלים (מחשב) */
@media (min-width: 601px) {
  .form-container {
    width: 809px; /* או ערך אחר המתאים לך לתצוגה במחשב */
  }
      .form-row {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-bottom: 10px;
    }
    
    .form-row label {
      font-weight: bold;
        margin-right: 10px;
        font-size: 25px;
        font-family: 'Rubik', sans-serif;

    }

    .form-row span {
      font-size: 25px;
      font-weight: normal;
      white-space: pre; /* הוסף קישור זה כדי לשמור על רווחים ותוויות מיוחדות */
      font-family: 'Rubik', sans-serif;

    }
    .button-left, .button-right {
      position: absolute;
      top: 80%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: #ffffff;
      color: #000000;
      font-size: 30px;
      font-weight: bold;
      cursor: pointer;
    }
    
    .button-left i, .button-right i {
      font-size: 24px;
      padding: 8px;
    }
    
    .button-left {
      left: 200px;
    }
    
    .button-right {
      right: 200px;
    }
    
    .button-left i::before {
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
      content: "\f104";
    }
    
    .button-right i::before {
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
      content: "\f105";
    }
    
    h5 {
      width: 809px;
    }
  }




.container{
  position: absolute;
  right: 30px;
  bottom: 30px;
  display: none;
}

.container .box{
  background: #fff;
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 15px 25px 15px 15px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: show_box 0.8s ease forwards;
}
@keyframes show_box {
  0%{
    transform: translateX(100%);
  }
  40%{
    transform: translateX(-5%);
  }
  80%{
    transform: translateX(0%);
  }
  100%{
    transform: translateX(-10px);
  }
}
#hide:checked ~ .box{
  animation: hide_box 0.8s ease forwards;
}
@keyframes hide_box {
  0%{
    transform: translateX(0%);
  }
  40%{
    transform: translateX(5%);
  }
  80%{
    transform: translateX(0%);
  }
  100%{
    transform: translateX(calc(100% + 35px ));
  }
}
.container .box i{
  position: absolute;
  right: 15px;
  top: 10px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}
.container i:hover{
  color: #000;
}
.container .logo{
  height: 90px;
  width: 90px;
  margin-right: 15px;
}
.container .logo img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.box .right{
  display: flex;
  flex-direction: column;
}
.box .right .text-1{
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
.box .right .text-2{
  font-size: 14px;
  color: #666;
  margin: 2px 0 8px 0;
}
.box .right a{
  font-size: 18px;
  font-weight: 500;
  display: block;
  padding: 8px 0;
  background: #24d8fc;
  border-radius: 6px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease;
}
.box .right a:hover{
  background-color: #03bde2;
}
.container #hide{
  display: none;
}
footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #f9f9f9;
	padding: 10px;
	text-align: center;
	font-size: 14px;
  }

  header {
    margin-top:50px;
    margin-bottom: 50px;
    background-image: url("title.png");
    background-repeat: no-repeat;
    background-size: contain; /* תאמת גודל התמונה לגודל המכרז */
    background-position: center;
    height: 83px; /* גובה התמונה */
    width: 473;
    cursor: pointer;
  }
  
  .title {
    display: none; /* אם ברצונך להסתיר את הטקסט של הכותרת */
  }
  button {
    background-color: #ffffff;
    border: none;
    width: 200px;
    color: black;
    border-radius: 8px;
    padding: 16px ;
    text-align: center;
    font-size: 16px;
    transition: 0.3s;
    margin-left: 3px;
    margin-bottom: 60px;
    cursor: pointer;
  }
  
  button:hover {
    background: linear-gradient(to bottom, #BA8A48, #F7D17E);
    color: black;
    cursor: pointer;
  }
  
  h5 {
    border-radius: 8px;
    padding: 10px;
    size: 100px;
    text-align: center;
    color: #333333;
    font-family: 'Rubik', sans-serif;
    font-size: 100px;
    font-weight: bold;
    margin: 0 auto;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #BA8A48, #F7D17E);
    text-align: center;
  }

  h5:hover {
    background-color: #8e3e6e;
    color: white;
  }
  
  h1:hover {
    background-color: #8e3e6e;
    color: white;
  }
  .form-container {
    background-image: url("https://xn--4dbddh0d3b.xn--4dbrk0ce/weddings/popup.png");
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin:  auto; /* הוסף את השורה הזו כדי למרכז את התיבה במרכז המסך */
    margin-bottom: 20px;
    }

   .form-row a {
      font-size: 16px;
      color: black;
            font-weight: normal;
      text-decoration: none;
    }

    .form-row a:hover {
      color: red;
      text-decoration: underline;
    }
  
  .form-row a {
  font-size: 25px; /* גודל הגופן של הקישור */
  color: black; /* צבע הקישור */
  text-decoration: none; /* אופן הקישור */
}
      .form-row a {
        display: flex;
        flex-direction: row;
        align-items: center;
        white-space: pre; /* הוסף קישור זה כדי לשמור על רווחים ותוויות מיוחדות */
        font-family: 'Rubik', sans-serif;
    }
 


