* {
  word-wrap:break-word; /*old browsers*/
  overflow-wrap:break-word;
}
form {
	 display: grid;
	 grid-template-columns: 1fr 1fr;
	 grid-gap: 20px;
}
 table {
	 table-layout: fixed;
	 width: 100%;
	 border-collapse: collapse;
	 border: 1px solid purple;
}
 thead th:nth-child(1) {
	 width: 15%;
}
 thead th:nth-child(2) {
	 width: 15%;
}
 thead th:nth-child(3) {
	 width: 20%;
}
 thead th:nth-child(4) {
	 width: 50%;
}

 th {
	 padding: 10px;
}

 