/**
 * Student Fee Search - Portal left panel (matches login theme)
 */
.search-portal-panel .portal-brand-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.search-portal-panel .portal-brand-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  margin-bottom: 1rem;
}

.search-portal-panel .portal-brand-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.search-portal-panel .portal-section {
  margin-bottom: 1.25rem;
}

.search-portal-panel .portal-section-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.search-portal-panel .portal-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 0.5rem;
}

.search-portal-panel .portal-card ul {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
}

.search-portal-panel .portal-card li {
  margin-bottom: 0.25rem;
}

.search-portal-panel .portal-footer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: auto;
  padding-top: 2rem;
}

/* Graduation cap icon - subtle float */
.search-fee-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.12);
  color: #6366f1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: searchIconFloat 4s ease-in-out infinite;
}

.search-fee-icon-wrap svg {
  width: 32px;
  height: 32px;
}

@keyframes searchIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Form card entrance */
.search-form-card-enter {
  animation: searchFormEnter 0.5s ease forwards;
}

@keyframes searchFormEnter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
