/* ===== Activation Page Styles ===== */

.activation-container {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.activation-card {
  padding: 2rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s;
}

.activation-card:hover {
  border-color: rgba(244, 114, 182, 0.4);
}

.step-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--purple-500), var(--fuchsia-500));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.activation-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.activation-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.benefits-list li svg {
  color: #22c55e;
  flex-shrink: 0;
}

.create-account-btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
}

/* ===== Form Styles ===== */
.activation-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-input:focus {
  border-color: var(--purple-500);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.15);
}

.submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  margin-top: 0.5rem;
  position: relative;
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-spinner {
  display: inline-flex;
  align-items: center;
}

.spinner-small {
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

.btn-success {
  background: #22c55e !important;
}

/* ===== Status Messages ===== */
.status-message {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.status-success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.status-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

/* ===== Verification Popup ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.popup-card {
  background: linear-gradient(to bottom right, #1a0f35, #0a0520);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.5rem;
  padding: 2rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  animation: fadeInFromBottom 0.3s ease;
}

.popup-icon {
  margin: 0 auto 1rem;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-icon-success {
  background: rgba(34, 197, 94, 0.15);
}

.popup-icon-error {
  background: rgba(239, 68, 68, 0.15);
}

.popup-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #4ade80;
  margin-bottom: 1rem;
}

.popup-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.popup-details {
  text-align: left;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
}

.detail-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.detail-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.popup-close-btn {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.6rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}

.popup-close-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* ===== Responsive ===== */
@media (min-width: 640px) {
  .activation-title {
    font-size: 1.75rem;
  }
  .activation-card {
    padding: 2.5rem;
  }
}

@media (min-width: 768px) {
  .activation-title {
    font-size: 2rem;
  }
}
