/* General Styles */
body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #141414;
  }
  
  a {
    text-decoration: none;
    color: #00b200;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Form Container Styles */
  .form-container {  
    top: 30px;
    margin-bottom: 40px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 350px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
  }
  
  .form-container h2 {
    color: #2f80ed;
    margin-bottom: 20px;
    font-size: 24px;
  }
  
  .form-container label {
    display: block;
    margin: 10px 0 5px;
    color: black;
    text-align: left;
  }
  
  .form-container input[type="text"],
  .form-container input[type="tel"],
  .form-container input[type="date"],
  .form-container input[type="password"],
  .form-container textarea {
    width: 100%;
    padding: 12px;
    margin: 5px 0 15px;
    border-radius: 5px;
    border: none;
    outline: none;
    background-color: #ececec;
    color: black;
  }
  
  textarea {
    resize: vertical;
  }
  
  .form-container button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(90deg, #2f81edc3, #2f80ed);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
  }
  
  .form-container button:hover {
    opacity: 0.9;
  }
  

  @media (max-width: 480px) {
    .form-container{
        width: 90%;
    }
}

/* Popup Modal Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup {
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    width: 90%;
    font-family: Arial, sans-serif;
}

.popup p {
    font-size: 16px;
    font-weight: 500;
    color: black;
    margin-bottom: 15px;
}

.popup button {
    background-color: #49b3f0;
    color: white;
    border: none;
    padding: 10px 50px;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
}

.popup button:hover {
    background-color: #49b3f0;
}

@media (max-width: 480px) {
  .popup-content {
      width: 90%;
  }
  .popup p {
      font-size: 15px;
      font-weight: 400;
      color: black;
  }
}

