body {
	background-color: white;
	font-family: sans-serif;
	margin: 0;
	padding: 0;
  }
  
  h1 {
	text-align: center;
  }
  
  h2 {
	margin-top: 0;
  }
  
  p {
	margin-bottom: 10px;
  }
  
  input {
	width: 100%;
	margin-bottom: 10px;
  }
  
  button {
	background-color: #000;
	color: white;
	font-weight: bold;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
  }
  
  #number {
	color: blue;
  }
  
  #password {
	color: red;
  }
  
  .boxes {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	margin-bottom: 20px;
  }
  
  .box {
	width: 25%;
	border: 1px solid black;
	padding: 10px;
  }
  
  .box h2 {
	text-align: center;
  }
  
  .box a {
	text-decoration: none;
	color: black;
  }
  
  .box a:hover {
	color: red;
  }
  
  .footer {
	text-align: center;
	margin-top: 20px;
  }
  
  .footer a {
	text-decoration: none;
	color: black;
  }
  
  .footer a:hover {
	color: red;
  }
  