body{
  margin: 0;
  background: #0056b3;
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  font-family: 'courier New','Courier New',courier, monospace;
}
.container{
  margin-top: 50px;
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  box-shadow: 0px 0px 10px rgba(0,0,0.2);
}
h1{
  text-align:center;
  color: #333;
}
input{
  font-size: 20px;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
}
.btn-container{
  text-align: center;
}
button{
  padding: 10px 10px;
  border: none;
  border-radius: 3px;
  background-color: #007BFF;
  color: white;
  cursor: pointer;
  margin: 0.5px auto;
}
button:hover{
  background-color: #0056b3;
}
p{
  margin-top: 20px;
}