.ff-input{
  background: rgba(2,6,23,0.35);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 10px 12px;
  outline: none;
  color: rgba(226,232,240,1);
}
.ff-input:focus{
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 0 0 4px rgba(99,102,241,0.18);
}

.ff-textarea{
  background: rgba(2,6,23,0.35);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 12px 12px;
  outline: none;
  color: rgba(226,232,240,1);
  resize: vertical;
}
.ff-textarea:focus{
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 0 0 4px rgba(99,102,241,0.18);
}

.ff-file{
  background: rgba(2,6,23,0.35);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 10px 12px;
  outline: none;
  color: rgba(226,232,240,1);
}

/* Card Component - Professional styling */
.card {
  background: linear-gradient(135deg, rgba(51, 65, 85, 0.4), rgba(30, 41, 59, 0.4));
  border: 1px solid rgba(129, 140, 248, 0.15);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.card:hover {
  border-color: rgba(129, 140, 248, 0.3);
  box-shadow: 0 8px 30px rgba(129, 140, 248, 0.1);
  transform: translateY(-2px);
}

/* Primary Button - Gradient style */
.btn-primary {
  background: linear-gradient(135deg, #818cf8, #c084fc);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(129, 140, 248, 0.3);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(129, 140, 248, 0.4);
}
