.cancel-button {
  background: transparent;
  border: 1.5px solid #e63946;
  color: #e63946;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-family: inherit;
  font-size: 1rem;
}

.cancel-button:hover,
.cancel-button:focus {
  background-color: #e63946;
  color: #fff;
  outline: none;
}
