.container {
	font-family: 'Roboto', sans-serif;
	color: white;
}

.form-body {
	border-radius: 10px;
  border-style: solid;
  border-width: 4px;
  padding: 20px;
  margin: 10px;
 }

input {
  border: 4px;
  border-radius: 5px;
  padding: 8px 20px;
  margin: 8px 2px;
  box-sizing: border-box;
  width: 100%;
  
}

body {
	background-color: #0D1730
}

.form-row {
  display: grid;
  grid-template-columns: auto auto;
  justify-items: stretch;
  align-items: start;
  column-gap: 15px;
  row-gap: 5px;
}