/* Demo Purpose Code */

input,
.box {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.2em;
}

.box {
  width: 200px;
  height: 200px;
  margin: 020px auto;
  display: flex; 
  border: 1px solid #333;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}

input[type="text"] {
  height: 50px;
  margin: 0 auto;
  display: flex; 
  padding: 10PX;
  justify-content: center;
  align-items: center;
}
