.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control, .form-select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-control:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-control:hover, .form-select:hover {
    border-color: #cbd5e1;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.file-upload {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.file-upload:hover {
    border-color: var(--primary);
    background: #f0f4ff;
}

.file-upload i {
    font-size: 2rem;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.hint-text {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 0.5rem;
}

.text-muted {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 0.3rem;
    display: block;
}
