/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 06 2026 | 02:58:39 */
/* =========================================================
   SPE BUTTON STYLES — Final (Sliding Fill hover effect)
   Class prefix: spe-

   Usage: add ONE color class to the outer ".wp-block-button" div.

   <div class="wp-block-button spe-blue">
     <a class="wp-block-button__link wp-element-button" href="#">
       Patient Registration Form
     </a>
   </div>

   Available color classes: spe-blue | spe-green | spe-dark
   ========================================================= */

/* -----------------------------
   1. BASE STYLES (shared by all 3 buttons)
   ----------------------------- */
.spe-blue .wp-block-button__link,
.spe-green .wp-block-button__link,
.spe-dark .wp-block-button__link {
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.35s ease;
}

/* Arrow icon AFTER the button text */
.spe-blue .wp-block-button__link::after,
.spe-green .wp-block-button__link::after,
.spe-dark .wp-block-button__link::after {
  content: "\2192";
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.spe-blue .wp-block-button__link:hover::after,
.spe-green .wp-block-button__link:hover::after,
.spe-dark .wp-block-button__link:hover::after {
  transform: translateX(4px);
}

/* -----------------------------
   2. COLOR VARIANTS
   ----------------------------- */
.spe-blue .wp-block-button__link {
  background-color: #00a3e4;
}

.spe-green .wp-block-button__link {
  background-color: #76B336;
}

.spe-dark .wp-block-button__link {
  background-color: #4D4D4F;
}

/* -----------------------------
   3. HOVER EFFECT — Sliding Fill
   A darker overlay wipes in from the left on hover.
   ----------------------------- */
.spe-blue .wp-block-button__link::before,
.spe-green .wp-block-button__link::before,
.spe-dark .wp-block-button__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  transition: left 0.35s ease;
  z-index: -1;
}

.spe-blue .wp-block-button__link:hover::before,
.spe-green .wp-block-button__link:hover::before,
.spe-dark .wp-block-button__link:hover::before {
  left: 0;
}

/* -----------------------------
   4. ACCESSIBILITY: focus state (keyboard users)
   ----------------------------- */
.spe-blue .wp-block-button__link:focus-visible,
.spe-green .wp-block-button__link:focus-visible,
.spe-dark .wp-block-button__link:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 3px;
}