.container {
  width: 45vw;
  height: 60vh;
  margin: auto;
  text-align: center;
  background-color: #1452f5;
  color: white;
  border-radius: 10px;
  box-shadow: 5px 5px 10px gray; 
}

#output {
	padding-top: 20%;
  font-size: 30px;
  font-family: arial;
}

#demo {
  width: 50%;
	border: none;
	background-color: transparent;
  border-bottom: 3px solid white;
  color: white;
  caret-color: white;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

*:focus {
  outline: none;
}

button { 
	background-color: #093FCD;
  border: none;
  padding: 8px;
  width: 100px;
  border-radius: 20px;
  color: white;
  transition: all 0.5s;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\21E5';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

#withdraw.button span:after{
  content: '\21E4';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

#withdraw.button:hover span {
  padding-right: 25px;
}

#withdraw.button:hover span:after {
  opacity: 1;
  right: 0;
}
