/******* Do not edit this file *******
Code Snippets Manager
Saved: Sep 02 2025 | 15:51:24 */
@charset "UTF-8";
.wpforms-form button[type=submit], .wpforms-form button[type=next], .wpforms-page-button.wpforms-page-next {
  text-decoration: none;
  color: #f1d318 !important;
  font-weight: bold !important;
  text-transform: capitalize;
  padding: 4px 4px;
  font-size: 20px !important;
  border-radius: 12px !important;
  background-color: #000000 !important;
  border: none !important;
  /* elimina borde blanco */
  box-shadow: 0px 2px 5px #f1d318;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
  /* transición suave */
}
.wpforms-form button[type=submit]:hover, .wpforms-form button[type=next]:hover, .wpforms-page-button.wpforms-page-next:hover {
  transform: scale(1.02);
  /* aumenta 1.02% */
  box-shadow: 0 4px 15px #f1d318;
  /* sombra más visible al hover */
}
