/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
body {
background-color: #F2F2F2;
text-align: center;
font-family: "Poppins", sans-serif;
}

form {
display: inline-block;
background-color: white;
border-radius: 20px;
box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.1);
padding: 40px;
width: 90%;
max-width: 600px;
}

input[type="number"] {
width: 100%;
height: 35px;
border-radius: 5px;
border: none;
border-bottom: 2px solid lightgray;
font-size: 18px;
padding: 10px;
margin-bottom: 20px;
}

input[type="button"] {
background-color: #4CAF50;
color: white;
border: none;
border-radius: 10px;
padding: 15px 40px;
cursor: pointer;
box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
margin-top: 20px;
width: 100%;
}

label {
color: black;
font-size: 20px;
font-weight: bold;
}

output {
font-size: 24px;
font-weight: bold;
color: #4CAF50;
margin-top: 20px;
}

i {
color: gray;
font-style: italic;
font-size: 14px;
}

@media (max-width: 600px) {
form {
padding: 20px;
}

label {
font-size: 18px;
}

input[type="number"] {
font-size: 16px;
height: 30px;
}

input[type="button"] {
padding: 10px 30px;
font-size: 16px;
}

output {
font-size: 20px;
}

i {
font-size: 12px;
}
}