#malta-tax-form {
  max-width: 700px;
  margin: 40px auto;
  padding: 40px 30px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  font-family: inherit;
}

#malta-tax-form,
#malta-tax-results {
  max-width: 1200px !important;
}

#malta-tax-form h2 {
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  color: #222;
}

#malta-tax-form label {
  display: block;
  margin: 20px 0 8px;
  font-weight: 500;
  color: black;
}

Output{
	color: black;
}

#malta-tax-form input,
#malta-tax-form select {
  width: 100%;
  padding: 12px;
  border: none;
  border-bottom: 2px solid #ccc;
  background: transparent;
  font-size: 16px;
  transition: border-color 0.3s;
}

#malta-tax-form input:focus,
#malta-tax-form select:focus {
  border-color: #cc3366;
  outline: none;
}

#malta-tax-form button {
  width: 100%;
  margin-top: 30px;
  padding: 14px;
  background-color: #cc3366;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

#malta-tax-form button:hover {
  background-color: #b12a58;
}

#malta-tax-results {
  max-width: 700px;
  margin: 20px auto;
  padding: 25px;
  background: #f6f6f6;
  border-left: 5px solid #cc3366;
  border-radius: 8px;
  font-size: 16px;
  color: #222;
	align-items: normal;
}

#malta-tax-results h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 20px;
  color: #cc3366;
}

#malta-tax-results p {
  margin: 10px 0;
  font-weight: 500;
}

@media only screen and (max-width: 860px){
	#malta-tax-results{
		flex-direction: column;
		align-items: center;
	}
}