/* CSS Document */

body {
  background-color: black;
  text-align: left;
}

div {
  color: white;
}

.required-field::before {
  content: "*";
  color: red;
}

.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* vh stands for viewport height */
}

form {
  width: 50%; /* adjust this value to control the form's width */
}