.form_style1 { display: grid; grid-template-columns: repeat(1, 1fr); gap: 10px; } .form_style2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; } .form_style3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; } .form_style4 { display: flex; flex-wrap: wrap; gap: 10px; } .groups { display: flex; justify-content: space-between; }