.flex-container {
    display: flex;
    flex-wrap: wrap;
    //border: solid thin red;
    min-height: 100%;
    width: 100%;
    margin: 31px auto;
	
 }	
	
	
 .form {
    width: 30%;
    height: 100%;
    border: solid thin #ccc;
    padding: 6px 22px;
    margin: 5px auto;
    border-radius: 8px;
    background-color: aliceblue;
 }

  input.inputFields{
      width: 100%;
	  margin: 5px auto;
  
  }

 #submit {
    width: 30%;
    padding: 6px;
    background-color: #2980b9;
    border: none;
    border-radius: 3px;
    color: white;
 }


#submit {
    width: 33%;
    padding: 6px;
    background-color: #2980b9;
    border: none;
    border-radius: 3px;
    color: white;
}


 
  /* Styles for desktops  Larger screens (Monitors) */
  @media only screen and (min-width: 1280px) {
        .form {
        width: 27%;
     }
     
  
  }
  
  
    /* Styles for laptops */
   @media only screen and (min-width: 769px) and (max-width: 1024px) {
     
     .form {
        width: 34%;
     }
     
     
 }
   
   
    
  /* Styles for tablets */
  @media only screen and (min-width: 481px) and (max-width: 768px) {
    
     .form {
        width: 74%;
        border: solid thin transparent;
     }
}



   /*  mobile phones */
   @media (max-width: 480px) {
      .form {
        width: 75%;
        border: solid thin transparent;
        position: relative;
        left: 12px;
     }
     
    
     
  }
 
 








