   /* Existing styles for your home page */

/* Modal container */
.modal {
    display: none;
    position: fixed; 
    z-index: 999; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
 }
  
  /* Modal content */
  .modal-content {
    /* background-color: #ffffff; */
    background: linear-gradient(to right, #3fcaff 0%, #a4ffb0 100%);
    margin: 8% auto; 
    padding: 10px;
  
    width: 30%; /* Could be more or less, depending on screen size */
    height: 70vh;
  }
  
  /* Close button */
  .close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    padding: 5px;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
  .modalContTxt{
    background-color:#2c2172;width: 100%;height: 65vh
  }

  .divOne{
    width: 90%;height: 12vh;display: flex;flex-direction: column;justify-content: center;
  }

.divOne input{
  height: 7vh;
  color: white;
}

.divTwo{
  width: 90%;height: 12vh;display: flex;flex-direction: column;justify-content: center
}

.divTwo select{
  width: 20%;border-radius: 5px;
}

.divTwo input{
  width: 75%;height: 7vh;
}





  @media (max-width : 650px) {
/* Modal container */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    
  }
  
  /* Modal content */
  .modal-content {
    background: linear-gradient(to right, #3fcaff 0%, #a4ffb0 100%);
    margin: 20% auto; 
    padding: 10px;
       
    width: 70%; /* Could be more or less, depending on screen size */
    height: 53vh;
  }
  
  /* Close button */
  .close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    padding: 5px;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }  
  
  .modalContTxt{
     background-color:#2c2172;width: 100%;height: 50vh
  }
  .divOne{
    width: 90%;height: 8vh;display: flex;flex-direction: column;justify-content: center;
  }
  .divOne input{
    height: 5vh
  }
  .divOne label{
     font-size: 14px;
  }
  .divTwo{
    width: 90%;height: 8vh;display: flex;flex-direction: column;justify-content: center
  }
  .divTwo label{
    font-size: 14px;
    color: white;
  }
  .divTwo select{
    width: 20%;border-radius: 5px;
  }
  .divTwo input{
    width: 75%;height: 5vh;
  }
}