.my-success-button {
  background-color: #28a745; /* Зеленый цвет */
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 4px; /* Закругленные углы */
  cursor: pointer; /* Указатель мыши */
}

.my-success-button:hover {
  background-color: #218838; /* Более темный зеленый цвет при наведении */
}