body {
  background: #f7f9fb;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  color: #333;
}


/* .noscroll {
  overflow: hidden;
}

/* Mobile: allow scroll */
/* @media (max-width: 767.98px) {
  body {
    overflow: auto;
  } */
 /* */ 


/* --- Brand --- */
.brand-logo {
  font-weight: 900;
  font-size: 3rem;
  letter-spacing: -1px;
  background: linear-gradient(90deg, #E1306C, #C13584);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-subtitle {
  font-weight: 500;
  font-size: 1rem;
  color: #555;
  margin-bottom: 0.5rem;
}

/* --- Guide Cards --- */
.guide-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 160px; /* fixed height for all cards */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.guide-icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background: #0d6efd;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  margin: 0 auto 0.5rem auto;
  border-radius: 50%;
}

.guide-text {
  font-size: 0.95rem;
  color: #555;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 0.25rem;
}

/* --- Form Card --- */
.form-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  padding: 2rem;
}

/* --- Input and Button --- */
.form-control-lg {
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.input-group .btn {
  border-radius: 0 12px 12px 0;
}

/* --- Gradient Button --- */
.btn-gradient {
  background: linear-gradient(90deg, #E1306C, #C13584);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  padding: 0.75rem 1.2rem;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(225, 48, 108, 0.3);
}

/* --- Waiting Message --- */
#waiting-msg {
  font-weight: 500;
  color: #555;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* --- Spinner --- */
.loading-spinner {
  width: 1.5rem;
  height: 1.5rem;
  border: 3px solid #ccc;
  border-top-color: #E1306C;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.brand-logo {
  font-weight: 900;
  font-size: 2.5rem; 
  text-align: center;
  color: #E1306C; 
}

@media (max-width: 767.98px) {
  .brand-logo {
    font-size: 1.8rem; 
    word-break: break-word; 
  }

  .brand-subtitle {
    font-size: 0.85rem;
  }
