/* Global Font */
:root {
  font-family: 'Inter', sans-serif;
}
body {
    font-family: 'Inter', sans-serif;
} 



}
   /* ==============================
   REGISTRATION MODAL – PREMIUM FORM
   ============================== */

/* ===== PREMIUM INPUT STYLE ===== */

.input {
    width: 100%;
    padding: 15px 18px;
    border-radius: 12px;
    border: 1.5px solid #d1d5db;
    font-size: 15px;
    font-weight: 500;
    background: #ffffff;
    color: #0f172a;
    caret-color: #2563eb; /* cursor color */
    transition: all 0.25s ease;
}

.input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.input:focus {
    border-color: #2563eb;
    box-shadow:
        0 0 0 3px rgba(37, 99, 235, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.05);
    outline: none;
    transform: translateY(-1px);
}

/* Dropdown same feel */
select.input {
    cursor: pointer;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.checkbox-line {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.link {
    color: #b47b2d;
    font-weight: 600;
    text-decoration: underline;
}

.btn-primary {
    padding: 14px;
    border-radius: 10px;
    background: #0f172a;
    color: #ffffff;
    font-weight: 600;
    transition: background 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #b47b2d;
}

.btn-secondary {
    padding: 14px;
    border-radius: 10px;
    background: #e5e7eb;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #d1d5db;
}   
.error-message {
    color: #dc2626;
    font-size: 14px;
    margin-top: 6px;
}
.success-message {
    color: #16a34a;
    font-size: 14px;
    margin-top: 6px;
}
.loader {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #0f172a; /* Blue */
    border-radius: 50%;
    width: 18px;
    height: 18px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
}
.payment-box {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
}

.payment-title {
  font-weight: 600;
  margin-bottom: 8px;
  color: #1f2937;
}

.payment-value {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #111827;
}

.copy-btn {
  background: #111827;
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
}

.copy-btn:hover {
  background: #000;
}

.slide {
  pointer-events: none;
}
.slide.active {
  pointer-events: auto;
}


