/* =====================================================
   DESKTOP CENTERING + STRUCTURE
===================================================== */

body .finsys-enterprise-card {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 440px !important;
    max-width: 90% !important;
    padding: 32px 34px !important;
    color-scheme: light !important; /* Forces light mode context */
}

/* =====================================================
   LABEL STYLING
===================================================== */

body .finsys-enterprise-card label {
    text-align: center !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 4px !important;
}

/* =====================================================
   INPUT REFINEMENT
===================================================== */

body .finsys-enterprise-card input[type="email"] {
    margin-top: 2px !important;
    margin-bottom: 16px !important;
    padding: 13px 16px !important;
}

/* =====================================================
   BUTTON & COLOR LOCK-IN
===================================================== */

body .finsys-enterprise-btn {
    margin-top: 6px !important;
    padding: 14px !important;
    background-color: #ff6600 !important;
    background: #ff6600 !important;
    color: #ffffff !important;
}

/* =====================================================
   MOBILE REFINEMENT
===================================================== */

@media (max-width: 768px) {
  body .finsys-enterprise-card {
    width: 92% !important;
    max-height: 78vh !important;
    overflow-y: auto !important;
    padding: 20px 18px !important;
    border-radius: 16px !important;
  }
  body .finsys-enterprise-card h3 {
    margin-bottom: 6px !important;
  }
  body .finsys-enterprise-card .subtitle {
    margin-bottom: 14px !important;
  }
  body .finsys-enterprise-card label {
    font-size: 15px !important;
    margin-bottom: 3px !important;
  }
  body .finsys-enterprise-card input[type="email"] {
    margin-bottom: 14px !important;
  }
  body .finsys-enterprise-btn {
    margin-top: 4px !important;
  }
  body .finsys-footnote {
    margin-top: 12px !important;
    font-size: 11px !important;
  }
}

/* =====================================================
   TOAST CONFIRMATION STYLE
===================================================== */

.finsys-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #111827;
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 10px;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 99999;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}