.submit{
	background-color: #0056b3;
  color: white; /* White text */
  padding: 10px 20px; /* Padding */
  border: none; /* No border */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer on hover */
  font-size: 16px; /* Text size */
  transition: background-color 0.3s ease; /* Smooth hover effect */
  margin-top:20px;
}
.results{
	background-color: rgb(139, 0, 0);
  color: white; /* White text */
  padding: 10px 20px; /* Padding */
  border: none; /* No border */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer on hover */
  font-size: 14px; /* Text size */
  transition: background-color 0.3s ease; /* Smooth hover effect */
  Width: 100%;
  font-weight: bold;
	
}

.steambutton {
  position: relative;
  display: block;
  background-color: #6f9f31;
  width: 100%;
  max-width: 270px;
  height: 50px;
  line-height: 50px;
  margin: 20px auto 0;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.steambutton span {
  font-family: 'Exo 2', sans-serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 14px;
  text-transform: uppercase;
  position: absolute;
  width: 75%;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.31, -0.105, 0.43, 1.4);
}

.steambutton .icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.31, -0.105, 0.43, 1.4);
}

.steambutton .icon .fab {
  font-size: 30px;
  line-height: 1;
  transition: all 0.25s cubic-bezier(0.31, -0.105, 0.43, 1.4), height 0.25s ease;
}

/* Vertical separator */
.steambutton span::after {
  content: '';
  background-color: #5d8628;
  width: 2px;
  height: 70%;
  position: absolute;
  top: 15%;
  right: 0;
}

/* Hover & success state animation */
.steambutton:hover span,
.steambutton.success span {
  left: -100%;
  opacity: 0;
}

.steambutton:hover .icon,
.steambutton.success .icon {
  width: 100%;
}

.steambutton:hover .icon .fab,
.steambutton.success .icon .fab {
  font-size: 45px;
}
