#container {
  width: 400px;
  margin: 0 auto;
  text-align: center;
}

h1 {
  color: #0072C6;
  font-family: Arial, sans-serif;
  font-size: 32px;
  margin-bottom: 24px;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
}

label {
  font-family: Arial, sans-serif;
  font-size: 16px;
  margin-bottom: 8px;
}

input[type="text"],
input[type="password"] {
  width: 300px;
  height: 32px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

button[type="submit"] {
  width: 120px;
  height: 32px;
  padding: 8px;
  background-color: #0072C6;
  border: none;
  border-radius: 4px;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 16px;
  cursor: pointer;
}

p {
  font-family: Arial, sans-serif;
  font-size: 16px;
}

a {
  color: #0072C6;
  text-decoration: none;
}
