/* This is a simple CSS to get you started, you'll need to adjust colors, fonts, etc. */
html{
    direction:rtl
}

.ltr,input,textarea{
    direction:ltr;
    display:inline-block
}

.title{
    margin:0;
    font-size:25px;
    font-weight:700;
    text-decoration:underline
}
.text{
    border:2px #333 dashed;
    padding:5px
}
#version{
    max-width:50px
}
.help{
    color:#fff;
    border-radius:50px;
    background-color:#4169e1;
    display:inline-block;
    vertical-align:middle;
    cursor:pointer
}
#nagishli-code{
    min-width:450px;
    min-height:100px;
    overflow:auto
}
.bottom{
    position:relative;
    bottom:-31px
}


.sub{
    margin:1% 1.5% 1% 0
}


body {
    font-family: Arial, sans-serif;
  }
  
  header {
    background-color: #5a8dee; /* Replace with the exact color from the image */
    color: white;
    text-align: center;
    padding: 20px;
  }
  
  nav {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */

  }

  .content{
    width: 1280px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  form {
    /* Add styles for the form */
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: #5a8dee;
    border-radius: 50px;
    margin: 0 100px 0 100px ;
    padding:  25px 25px 25px 25px;
  }


  
  input[type="text"] {
    display: block;
    margin: 10px 0;
    border-radius: 50px;
    height: 3rem;
    width: 250px;
    border-right-width: 15px;    
    border-color: #007bff00;
    background-color: #ffffff;
    direction: rtl;
  }

  input[type="number"] {
    display: block;
    margin: 10px 0;
    border-radius: 50px;
    height: 3rem;
    width: 250px;
    border-right-width: 15px;    
    border-color: #007bff00;
    background-color: #ffffff;
    direction: rtl;
  }
  
  p {
      font-size: 22px;
  }
  
  #contactForm .button {
    border-radius: 50px;
    border-style: none;
    height: 3rem;
    width: 15rem;
    background-color: #70d87b;
    /* Additional styles for text color, font, etc. */
    color: white; /* Example to set the text color to white */
    font-size: 1rem; /* Example to set the font size */
    cursor: pointer; /* Changes the mouse cursor to a pointer on hover */
    transition: background-color 0.3s; /* Smooth transition for background color */
    margin-top: 1.5rem;
  }
  
  #contactForm .button:hover {
    background-color: #64c46b; /* Slightly darker green color on hover */
  }
  
  figure {
    /* Style the figure if needed */
  }
  
  /* Add media queries for responsiveness */
  .three-column-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    padding: 20px;
  }
  
  .firts-month-free{
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    color: #5a8dee;
  }
  
  .form-title{
    font-size: 18px;
    text-align: center;
    font-weight: bold;
  }
  
  .column {
    padding: 10px; /* This adds some spacing around the content of each column */
  }
  
  .form-column {
    /* Additional styling for form column if needed */
  }

  .form-column  p{
    /* Additional styling for form column if needed */
    text-align: center;
    color: #5a8dee;
    font-size: 42px;
    font-weight: bold;
  }
  
  .image-column {
    position:relative;
  }
  .hedgehog-image{
    max-width: 180px;
    margin: 270px -605px 15px auto;

  }
  
  .text-column {
    /* Additional styling for text column if needed */
    text-align: start;
    max-width: 400px;
    margin-left: 5rem;
  }

  .reg-action{
    text-align: center;
    padding-bottom:35px;
  }

.button-reg-action{
    border-radius: 50px;
    border-style: none;
    height: 3rem;
    width: 15rem;
    background-color: #70d87b;
    /* Additional styles for text color, font, etc. */
    color: white; /* Example to set the text color to white */
    font-size: 14px; /* Example to set the font size */
    cursor: pointer; /* Changes the mouse cursor to a pointer on hover */
    transition: background-color 0.3s; /* Smooth transition for background color */
  }

  .button-reg1{
    border-radius: 50px;
    border-style: solid;
    height: 2.5rem;
    background-color: #5a8dee;
    border-color: black;
    /* Additional styles for text color, font, etc. */
    color: white; /* Example to set the text color to white */
    font-size: 14px; /* Example to set the font size */
    cursor: pointer; /* Changes the mouse cursor to a pointer on hover */
    transition: background-color 0.3s; /* Smooth transition for background color */
  }
  
  /* Responsive adjustments for smaller screens */
  @media (max-width: 900px) {
    .three-column-container {
        align-items: center;
        

      flex-direction: column;
    }
    .content{
        width: auto;
        display: block;
        margin-left: auto;
        margin-right: auto;
      }
    .hedgehog-image{
        display: none;
    
      }
  
    .column {
      margin-bottom: 0px;
    }

    .form-column{
    }
    .text-column {
        /* Additional styling for text column if needed */
        margin-left: 0rem;
      }

      form {
        /* Add styles for the form */
        margin: 0;
      }
  }
  
  .loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9); /* Light white background */
    z-index: 9999; /* Ensure it's above other content */
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    border: 4px solid rgba(0,0,0,.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border-left-color: #09f;
    animation: spin 1s ease infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

  
  /* Overlay and Popup Styles */
.overlay {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.popup {
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 400px; /* Maximum width */
}

.popup p {
    text-align: center;
    font-size: 16px; /* Adjust as needed */
}

.popup button {
    display: block;
    margin: 20px auto; /* Center the button inside the popup */
    padding: 10px 20px;
    background-color: #5a8dee;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Footer Area Start
------------------------------------- */
.footer-area{
    background-image: url(../images/footer-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-color: #5a8dee;
    margin-top: 75px;
    text-align: center;
    position: relative;
    padding-bottom: 30px;
  }
  .footer-area object{
    position: absolute;
    top: -108px;
    left: 0;
    right: 0;
    margin: auto;
    width: 164px;
    height: 150px;
    background-image: url(../images/keepy-footer.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .footer-area a img{
    width: 100px;
    height: auto;
    margin: auto;
    margin-top: 30px;
  }
  .footer-area .p{
    font-size: 16px;
    line-height: 21px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 10px 0 20px 0;
  }

  .footer-area a{
    font-size: 16px;
    line-height: 21px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
  }
  .footer-area .btn1{
    margin-bottom: 35px;
  }

    .captcha-title {
      color: white;
      display: block;
    }
    .captcha-question {
      color: white;
      margin-top: 10px;
      margin-bottom: 10px;
    }
  
  /* Footer Area End