/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
body {
  background-color: #f2f2f2;
  font-family: Arial, sans-serif;
}

h2 {
  text-align: center;
  margin-top: 50px;
  font-size: 36px;
  color: #333;
}

form {
  width: 500px;
  margin: 0 auto;
  text-align: center;
  padding: 50px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px #ccc;
}

label {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  display: block;
}

input[type="number"] {
  padding: 10px;
  font-size: 18px;
  margin-bottom: 20px;
  width: 100%;
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 10px #ccc;
}

input[type="submit"] {
  padding: 15px 30px;
  font-size: 18px;
  background-color: green;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  margin-top: 20px;
  transition: background-color 0.2s ease-in-out;
}

input[type="submit"]:hover {
  background-color: #4caf50;
}

.output {
  margin-top: 50px;
  font-size: 24px;
  font-weight: bold;
  color: green;
  text-align: center;
}