button, input[type="button"], input[type="submit"], input[type="reset"] {
  background-color: #e170b4 !important;
  color: white !important;
  border: none !important;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

button:hover, input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover {
  background-color: #ecafd3 !important;
}

.size {
  width: 100%!important;
}

@media (min-width: 1400px) {
  .size {
    max-width: 90%!important;
  }
}

.floating-link {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: white;
  color: #e170b4;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.floating-link:hover {
  background-color: #E78DC3;
  color: white;
}

