/* Career Form Specific Styles */
.career-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 16px;
}

.career-header {
  text-align: center;
  margin-bottom: 32px;
}

.career-header h1 {
  font-family: var(--font-hindi);
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.career-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.form-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 32px;
}

.form-step {
  display: none;
  padding: 32px;
}

.form-step.active {
  display: block;
}

.step-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.step-header h2 {
  font-family: var(--font-hindi);
  font-size: 1.8rem;
  color: var(--text);
}

/* Formal Form Layout */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-family: var(--font-hindi);
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
}

.form-input, .form-select, .form-textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-hindi);
  background: var(--bg);
  color: var(--text);
  transition: all 0.3s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

/* Photo Upload Box */
.photo-upload-container {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  padding: 24px;
  background: rgba(0,0,0,0.02);
  border-radius: var(--radius-md);
  border: 1px dashed var(--border);
}

.photo-preview {
  width: 120px;
  height: 150px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upload-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-hindi);
  font-weight: 500;
  transition: all 0.2s;
}

.upload-btn:hover {
  background: var(--bg);
  border-color: var(--text-muted);
}

/* Oath Specific */
.oath-box {
  background: var(--primary-muted);
  border-left: 4px solid var(--primary);
  padding: 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 24px;
}

.oath-box ol {
  padding-left: 20px;
  font-family: var(--font-hindi);
  line-height: 1.6;
  color: var(--text);
}

.oath-box li {
  margin-bottom: 12px;
}

.declaration {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.declaration input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
}

.declaration label {
  font-family: var(--font-hindi);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  cursor: pointer;
}

/* Actions */
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.btn-outline {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text);
  border-radius: var(--radius-md);
  font-family: var(--font-headline);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--bg);
}

.btn-primary {
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-headline);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
