/* Reset some basic styles */
 
  
  .form-container {
 
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 800px;
    padding-top: 2rem ;
    padding-bottom: 2rem;
  }
  .cont{
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
  }
  .gender{
    display: flex;
  }
  .form-group {
    margin-bottom: 15px;
    display: flex;
    gap: 4rem;
  }
  
  label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
  }
  
  input[type="text"],
  input[type="date"],
  input[type="tel"],
  input[type="email"],
  input[type="file"],
  select,
  textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
  }
  
  textarea {
    height: 60px;
  }
  
  input[type="radio"] {
    margin-right: 5px;
  }
  
  button {
    width: 100%;
    padding: 10px;
    background-color: #1B3D68;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #163b60;
  }
  @media (max-width: 991px) {
    .form-container {
      margin-top: 10rem;
     width: 400px;
      }
    }


    @media (min-width: 576px) {
        .form-container {
          margin-top: 6rem;
          margin-bottom: 4rem;
          width: 890px;
          }
        }


        .amount{
            display: flex;
            margin-top: 1rem;
            margin-bottom: 1rem;
        }
        .certificate{
            display: flex;
        }
        .submit{
            margin-top: 1rem;
        }
 