/* =========================================================
   transfer.css — Part 1
   Premium Banking UI (Revolut / N26 / Wise inspired)
========================================================= */

/* =========================
   ROOT VARIABLES
========================= */
:root {
  --bg: #0b1220;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.09);
  --stroke: rgba(255, 255, 255, 0.12);

  --text: #eaf0ff;
  --muted: rgba(234, 240, 255, 0.65);

  --primary: #6c7cff;
  --primary-2: #8a5bff;
  --success: #25d695;
  --warning: #ffb020;
  --danger: #ff4d6d;

  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;

  --shadow-sm: 0 10px 30px rgba(0,0,0,0.25);
  --shadow-md: 0 20px 60px rgba(0,0,0,0.35);

  --blur: blur(16px);

  --transition: 0.25s ease;
}

/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

body {
  background: radial-gradient(1200px 800px at 20% 10%, #1a2450 0%, transparent 60%),
              radial-gradient(1000px 600px at 80% 20%, #2b1b4d 0%, transparent 55%),
              var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* =========================
   DASHBOARD LAYOUT
========================= */
.main-content {
  padding: 30px;
  margin-left: 260px;
  transition: var(--transition);
}

@media (max-width: 992px) {
  .main-content {
    margin-left: 0;
    padding: 18px;
  }
}

/* =========================
   PREMIUM HEADER
========================= */
.transfer-header {
  background: linear-gradient(135deg, rgba(108,124,255,0.25), rgba(138,91,255,0.18));
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: var(--blur);
  position: relative;
  overflow: hidden;
}

.transfer-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}

.transfer-header h1 {
  font-size: 24px;
  letter-spacing: 0.5px;
}

.transfer-header p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

/* =========================
   PREMIUM CARDS
========================= */
.card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: var(--blur);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  background: var(--panel-2);
  box-shadow: var(--shadow-md);
}

/* =========================
   GRID LAYOUT
========================= */
.transfer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  margin-top: 22px;
}

@media (max-width: 992px) {
  .transfer-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   FORM CONTAINER
========================= */
.transfer-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* =========================
   INPUT SYSTEM (FLOATING LABELS)
========================= */
.input-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 16px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  outline: none;
  transition: var(--transition);
}

.input-group textarea {
  min-height: 110px;
  resize: none;
}

.input-group label {
  position: absolute;
  left: 14px;
  top: 14px;
  color: var(--muted);
  font-size: 13px;
  pointer-events: none;
  transition: var(--transition);
  background: transparent;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: rgba(108,124,255,0.7);
  box-shadow: 0 0 0 4px rgba(108,124,255,0.15);
  background: rgba(255,255,255,0.06);
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group select:focus + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  font-size: 11px;
  color: var(--primary);
}

/* =========================
   BUTTONS PREMIUM
========================= */
.btn {
  border: none;
  padding: 14px 18px;
  border-radius: 18px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 12px 30px rgba(108,124,255,0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(108,124,255,0.35);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--stroke);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
}

/* =========================
   SUMMARY CARD
========================= */
.transfer-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--stroke);
}

.summary-item span {
  color: var(--muted);
  font-size: 13px;
}

.summary-item strong {
  font-size: 14px;
  color: var(--text);
}

/* =========================
   BADGES
========================= */
.badge {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.05);
}

.badge.success {
  background: rgba(37,214,149,0.12);
  color: var(--success);
  border-color: rgba(37,214,149,0.25);
}

.badge.warning {
  background: rgba(255,176,32,0.12);
  color: var(--warning);
  border-color: rgba(255,176,32,0.25);
}

/* =========================
   PROGRESS BASE (PREP FOR JS)
========================= */
.progress-wrapper {
  width: 100%;
  height: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--stroke);
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  transition: width 0.4s ease;
}

/* =========================
   TRANSFER STATUS BOX
========================= */
.status-box {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--stroke);
  backdrop-filter: var(--blur);
}

.status-box h3 {
  font-size: 14px;
  margin-bottom: 6px;
}

.status-box p {
  font-size: 13px;
  color: var(--muted);
}

/* =========================
   MICRO ANIMATIONS
========================= */
.fade-in {
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}


/* =========================================================
   transfer.css — Part 2
   Premium Banking UI (Revolut / N26 / Wise inspired)
========================================================= */

/* =========================
   TRANSFER TIMELINE
========================= */
.transfer-timeline {
  position: relative;
  padding: 20px 0;
  margin-top: 10px;
}

.transfer-timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.10);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  position: relative;
}

.timeline-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition);
}

.timeline-dot.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 0 6px rgba(108,124,255,0.15);
}

.timeline-dot.success {
  background: rgba(37,214,149,0.15);
  border-color: rgba(37,214,149,0.35);
  color: var(--success);
}

.timeline-content {
  flex: 1;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--stroke);
  backdrop-filter: var(--blur);
}

.timeline-content h4 {
  font-size: 13px;
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 12px;
  color: var(--muted);
}

/* =========================
   CODE VERIFICATION CARDS
========================= */
.code-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-sm);
  backdrop-filter: var(--blur);
  animation: fadeIn 0.4s ease forwards;
}

.code-card h3 {
  font-size: 15px;
  margin-bottom: 10px;
}

.code-card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}

/* =========================
   CODE INPUT SPECIAL STYLE
========================= */
.code-input {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: rgba(0,0,0,0.25);
  color: var(--text);
  font-size: 16px;
  letter-spacing: 6px;
  text-align: center;
  outline: none;
  transition: var(--transition);
}

.code-input:focus {
  border-color: rgba(108,124,255,0.7);
  box-shadow: 0 0 0 5px rgba(108,124,255,0.15);
  transform: scale(1.02);
}

/* =========================
   TRANSFER ACTION PANEL
========================= */
.action-panel {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.action-panel .btn {
  flex: 1;
}

/* =========================
   BENEFICIARY CARD
========================= */
.beneficiary-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--stroke);
  transition: var(--transition);
}

.beneficiary-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.beneficiary-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
}

.beneficiary-info h4 {
  font-size: 14px;
}

.beneficiary-info span {
  font-size: 12px;
  color: var(--muted);
}

/* =========================
   TRANSFER STEPS PROGRESS (ENHANCED)
========================= */
.transfer-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  position: relative;
}

.transfer-steps::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.08);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}

.step-circle {
  width: 28px;
  height: 28px;
  margin: 0 auto 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: var(--transition);
}

.step.active .step-circle {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 0 5px rgba(108,124,255,0.12);
}

.step.completed .step-circle {
  background: rgba(37,214,149,0.18);
  border-color: rgba(37,214,149,0.35);
  color: var(--success);
}

.step-label {
  font-size: 11px;
  color: var(--muted);
}

/* =========================
   HOVER GLASS EFFECT
========================= */
.glass-hover {
  position: relative;
  overflow: hidden;
}

.glass-hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.08),
    transparent
  );
  transition: 0.6s;
}

.glass-hover:hover::after {
  left: 120%;
}

/* =========================
   LOADING PULSE
========================= */
.pulse {
  position: relative;
}

.pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(108,124,255,0.25);
  animation: pulseAnim 1.6s infinite;
  z-index: -1;
}

@keyframes pulseAnim {
  0% { transform: scale(1); opacity: 0.6; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { opacity: 0; }
}

/* =========================
   RESPONSIVE MICRO ADJUSTMENTS
========================= */
@media (max-width: 768px) {
  .beneficiary-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .transfer-steps {
    flex-direction: column;
    gap: 14px;
  }

  .transfer-steps::before {
    display: none;
  }

  .step {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .step-circle {
    margin: 0;
  }
}



/* =========================================================
   transfer.css — Part 3
   Premium Banking UI (Revolut / N26 / Wise inspired)
========================================================= */

/* =========================
   TRANSFER PROGRESS PANEL (JS CONTROLLED)
========================= */
.transfer-progress-panel {
  margin-top: 20px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--stroke);
  backdrop-filter: var(--blur);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.transfer-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.transfer-progress-header h3 {
  font-size: 14px;
  letter-spacing: 0.4px;
}

.transfer-progress-header span {
  font-size: 12px;
  color: var(--muted);
}

/* =========================
   LIVE PROGRESS VALUE (ID: liveProgressValue)
========================= */
#liveProgressValue {
  font-size: 26px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--transition);
}

/* =========================
   STATUS BOX (ID: transferStatusBox)
========================= */
#transferStatusBox {
  margin-top: 14px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.03);
  backdrop-filter: var(--blur);
}

#transferStatusText {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* =========================
   PROGRESS BAR WRAPPER (ID: transferProgressBar)
========================= */
#transferProgressBar {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--stroke);
  overflow: hidden;
  margin-top: 12px;
  position: relative;
}

#transferProgressBar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(108,124,255,0.2), rgba(138,91,255,0.2));
  opacity: 0.4;
}

/* JS will update inner bar via transfer.js */
.progress-inner {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  transition: width 0.35s ease;
}

/* =========================
   CODE CONTAINERS (JS CONTROLLED VISIBILITY)
========================= */
#firstCodeContainer,
#secondCodeContainer {
  display: none;
  margin-top: 18px;
  animation: fadeIn 0.4s ease forwards;
}

/* =========================
   FORMS
========================= */
#firstCodeForm,
#secondCodeForm {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =========================
   INPUT CORE (CODE FIELDS)
========================= */
input#transferCode,
input#transferStopCode {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: rgba(0,0,0,0.25);
  color: var(--text);
  font-size: 16px;
  letter-spacing: 6px;
  text-align: center;
  outline: none;
  transition: var(--transition);
}

input#transferCode:focus,
input#transferStopCode:focus {
  border-color: rgba(108,124,255,0.7);
  box-shadow: 0 0 0 5px rgba(108,124,255,0.15);
  transform: scale(1.02);
}

/* =========================
   TRANSFER SUCCESS MODAL (ID: transferSuccessModal)
========================= */
#transferSuccessModal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(10px);
  z-index: 9999;
  padding: 20px;
}

#transferSuccessModal.active {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}

.transfer-modal-card {
  width: 100%;
  max-width: 420px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.transfer-modal-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(37,214,149,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  font-size: 26px;
}

.transfer-modal-card h2 {
  font-size: 18px;
  margin-bottom: 6px;
}

.transfer-modal-card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}

/* =========================
   BUTTON STATES ENHANCEMENT
========================= */
.btn.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.85;
}

.btn.loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.25);
  border-top-color: #fff;
  border-radius: 50%;
  position: absolute;
  right: 14px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =========================
   ALERT STATES
========================= */
.alert {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  font-size: 13px;
  line-height: 1.4;
}

.alert.error {
  background: rgba(255,77,109,0.12);
  border-color: rgba(255,77,109,0.25);
  color: #ff7b8f;
}

.alert.success {
  background: rgba(37,214,149,0.12);
  border-color: rgba(37,214,149,0.25);
  color: #6ff0c2;
}

.alert.info {
  background: rgba(108,124,255,0.12);
  border-color: rgba(108,124,255,0.25);
  color: #b7c0ff;
}

/* =========================
   HIDE / SHOW UTILITIES (JS CONTROL)
========================= */
.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

/* =========================
   FINAL MICRO INTERACTIONS
========================= */
.click-pop {
  transition: transform 0.15s ease;
}

.click-pop:active {
  transform: scale(0.96);
}

.soft-glow {
  box-shadow: 0 0 25px rgba(108,124,255,0.15);
}

/* =========================
   END PART 3
========================= */


/* =========================================================
   transfer.css — Part 4 (FINAL)
   Premium Banking UI (Revolut / N26 / Wise inspired)
========================================================= */

/* =========================
   HISTORY / TABLE STYLE (OPTIONAL DASHBOARD BLOCK)
========================= */
.transfer-history {
  margin-top: 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.03);
  backdrop-filter: var(--blur);
}

.transfer-history-header {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--stroke);
}

.transfer-history-header h3 {
  font-size: 14px;
}

.transfer-history-table {
  width: 100%;
  border-collapse: collapse;
}

.transfer-history-table th,
.transfer-history-table td {
  padding: 14px 16px;
  font-size: 13px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.transfer-history-table th {
  color: var(--muted);
  font-weight: 600;
}

.transfer-history-table tr:hover {
  background: rgba(255,255,255,0.04);
}

/* =========================
   ICON WRAPPERS (FONT AWESOME SUPPORT)
========================= */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--stroke);
  color: var(--text);
}

/* =========================
   FORM GRID FINAL POLISH
========================= */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-grid.full {
  grid-template-columns: 1fr;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   SECTION TITLES
========================= */
.section-title {
  font-size: 13px;
  color: var(--muted);
  margin: 10px 0;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* =========================
   DIVIDERS
========================= */
.divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 18px 0;
}

/* =========================
   TOOLTIP STYLE
========================= */
.tooltip {
  position: relative;
  cursor: pointer;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 6px 10px;
  font-size: 11px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.tooltip:hover::after {
  opacity: 1;
}

/* =========================
   SCROLLBAR PREMIUM
========================= */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.03);
}

::-webkit-scrollbar-thumb {
  background: rgba(108,124,255,0.35);
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(108,124,255,0.55);
}

/* =========================
   GLOBAL ANIMATIONS ENHANCEMENT
========================= */
@keyframes floatUp {
  0% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.float-up {
  animation: floatUp 0.4s ease forwards;
}

/* =========================
   LOADING SHIMMER
========================= */
.shimmer {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.08),
    transparent
  );
  animation: shimmerMove 1.6s infinite;
}

@keyframes shimmerMove {
  100% {
    left: 150%;
  }
}

/* =========================
   SAFE AREA MOBILE FIXES
========================= */
@media (max-width: 480px) {
  .transfer-header {
    padding: 18px;
  }

  .card {
    padding: 16px;
  }

  .btn {
    padding: 12px 14px;
    border-radius: 14px;
  }
}

/* =========================
   FINAL TRANSFER UI STATES
========================= */
.state-waiting {
  border-color: rgba(255,255,255,0.12);
}

.state-active {
  border-color: rgba(108,124,255,0.35);
  box-shadow: 0 0 0 4px rgba(108,124,255,0.12);
}

.state-success {
  border-color: rgba(37,214,149,0.35);
  box-shadow: 0 0 0 4px rgba(37,214,149,0.12);
}

.state-error {
  border-color: rgba(255,77,109,0.35);
  box-shadow: 0 0 0 4px rgba(255,77,109,0.12);
}

/* =========================
   END FILE
========================= */














/* =========================================================
   INITIAL VISIBILITY CONTROL (CRITICAL FOR JS FLOW)
========================================================= */

/* Form visible by default */
#transferFormContainer {
  display: block;
}

/* Hidden steps until JS triggers them */
#firstCodeContainer,
#secondCodeContainer {
  display: none;
}

/* Progress hidden until transfer starts */
.transfer-progress-panel {
  display: none;
}

/* When active states are triggered by JS */
.is-active {
  display: block !important;
}

.is-hidden {
  display: none !important;
}



.input-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
}

/* label always float for select */
.input-group select + label {
  top: -10px;
  font-size: 11px;
  color: var(--primary);
}



